Skip to content

Commit

Permalink
Fix issue where Android app is not launchable (JetBrains#1758)
Browse files Browse the repository at this point in the history
Launcher `Activity` should have `android:exported` attributes set to `true` so that app launchers have permission to launch the `Activity`.

Check official docs for more information: https://developer.android.com/guide/topics/manifest/activity-element#exported
  • Loading branch information
RyanSimon authored Jan 27, 2022
1 parent b8ec76d commit a749ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/todoapp/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<activity
android:name="example.todo.android.MainActivity"
android:label="@string/app_name"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down

0 comments on commit a749ade

Please sign in to comment.