Receive live notifications for your nostr events and allow other apps to receive and interact with them.
What is Nostr: https://www.nostr.how
- Finish POC
- Connect with Amber
- Broadcast to other apps
- Auth to relays
- Use built-in Tor engine
- Multi-account
- InBox Relays management
- Granulated notification settings
- Mute button and mute lists
- Last 20 notifications view
- Register the intent filter in the
AndroidManifest.xml
file:
<receiver android:name=".MyBroadcastReceiver">
<intent-filter>
<action android:name="com.shared.NOSTR" />
</intent-filter>
</receiver>
- Register receiver in your Service or Activity:
override fun onStart() {
super.onStart()
val filter = IntentFilter("com.shared.NOSTR")
registerReceiver(myBroadcastReceiver, filter)
}
override fun onStop() {
super.onStop()
unregisterReceiver(myBroadcastReceiver)
}
- Inspired by https://github.com/greenart7c3/Amber
- @vitorpamplona for the push :D