summaryrefslogtreecommitdiff
path: root/samples/IntentPlayground/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/IntentPlayground/AndroidManifest.xml')
-rw-r--r--samples/IntentPlayground/AndroidManifest.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/samples/IntentPlayground/AndroidManifest.xml b/samples/IntentPlayground/AndroidManifest.xml
index d810d8b11..25e5d28e9 100644
--- a/samples/IntentPlayground/AndroidManifest.xml
+++ b/samples/IntentPlayground/AndroidManifest.xml
@@ -24,13 +24,17 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
- <activity android:name=".RegularActivity">
+ <activity android:name=".RegularActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
+ android:name=".SingleInstancePerTaskActivity"
+ android:launchMode="singleInstancePerTask"
+ />
+ <activity
android:name=".SingleTopActivity"
android:launchMode="singleTop" />
<activity