fix: Fix Example app's exported property

This commit is contained in:
Marc Rousavy 2021-10-13 10:31:22 +02:00
parent 3315f51faf
commit 1f4d188c52
2 changed files with 2 additions and 4 deletions

View File

@ -5,8 +5,6 @@
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning">
<activity
android:name="com.facebook.react.devsupport.DevSettingsActivity"
android:exported="false" />
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>

View File

@ -33,7 +33,7 @@
android:windowSoftInputMode="adjustResize"
android:screenOrientation="portrait"
android:fitsSystemWindows="false"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />