Last active
May 31, 2020 16:48
-
-
Save Karn/5c90c72f1f87005a0fef73cd9887233d to your computer and use it in GitHub Desktop.
Sample AndroidManifest Configuration for Notification Bubbles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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