Skip to content

Commit

Permalink
Fix PermissionDenial in sample app (#367)
Browse files Browse the repository at this point in the history
When exported is set to false, I get the following error:

04-18 11:58:55.151 1872-4043/system_process W/ActivityManager: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.example.firebase.fiamui/.MainActivity } from null (pid=10983, uid=2000) not exported from uid 10085
  • Loading branch information
schmidt-sebastian committed Apr 22, 2019
1 parent 52a4c86 commit 7a6b23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiamui-app/src/main/AndroidManifest.xml
Expand Up @@ -17,7 +17,7 @@
<activity
android:name=".MainActivity"
android:windowSoftInputMode="stateHidden"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.DEFAULT" />
Expand Down

0 comments on commit 7a6b23a

Please sign in to comment.