Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Karn
Last active May 31, 2020 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Karn/5c90c72f1f87005a0fef73cd9887233d to your computer and use it in GitHub Desktop.
Save Karn/5c90c72f1f87005a0fef73cd9887233d to your computer and use it in GitHub Desktop.
Sample AndroidManifest Configuration for Notification Bubbles
<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
<application
...>
<activity
android:name=".BubbleActivity"
...
<!-- Add the three lines below to the activity being shown -->
android:allowEmbedded="true"
android:documentLaunchMode="always"
android:resizeableActivity="true" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment