Skip to content

Commit

Permalink
Add android:exported="true" to activities
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Nov 29, 2022
1 parent 8b26772 commit e050cf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<activity
android:name=".TestActivity"
android:label="Test"
android:exported="true"
>
</activity>
</application>
Expand Down
3 changes: 2 additions & 1 deletion testapp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<activity
android:name=".Test"
android:label="OHFragmentTest"
android:configChanges="orientation|screenSize|keyboardHidden|density|screenLayout|uiMode" >
android:configChanges="orientation|screenSize|keyboardHidden|density|screenLayout|uiMode"
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 e050cf2

Please sign in to comment.