Skip to content

Commit 32991d6

Browse files
Update AndroidManifest.xml
1 parent 6c7f554 commit 32991d6

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version='1.0' encoding='utf-8'?>
22
<manifest
3-
xmlns:android="http://schemas.android.com/apk/res/android"
4-
package="modder.hub.editor">
3+
xmlns:android="http://schemas.android.com/apk/res/android">
54

65
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
76
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
@@ -19,7 +18,8 @@
1918
android:name=".MainActivity"
2019
android:label="@string/app_name"
2120
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
22-
android:windowSoftInputMode="adjustResize|stateAlwaysVisible">
21+
android:windowSoftInputMode="adjustResize|stateAlwaysVisible"
22+
android:exported="true">
2323
<intent-filter>
2424
<action android:name="android.intent.action.MAIN"/>
2525

@@ -33,7 +33,8 @@
3333
<activity
3434
android:name=".DebugActivity"
3535
android:screenOrientation="portrait"
36-
android:theme="@style/AppTheme.DebugActivity" />
36+
android:theme="@style/AppTheme.DebugActivity"
37+
android:exported="false" />
3738
</application>
3839

3940
</manifest>

0 commit comments

Comments
 (0)