Skip to content

Commit e1ee8d6

Browse files
committed
feat(app/main): fix 'AndroidManifest.xml'
1 parent c0c9b2f commit e1ee8d6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@
88
android:fullBackupContent="@xml/backup_rules"
99
android:icon="@mipmap/ic_launcher"
1010
android:label="@string/app_name"
11-
android:supportsRtl="true"
11+
android:supportsRtl="false"
1212
android:theme="@style/Theme.OraclePLSQL"
1313
tools:targetApi="31">
14+
15+
<meta-data android:name="android.webkit.WebView.MetricsOptOut"
16+
android:value="false"/>
17+
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing"
18+
android:value="false" />
19+
1420
<activity
1521
android:name=".MainActivity"
16-
android:exported="true">
22+
android:exported="true"
23+
android:configChanges="orientation|screenSize">
1724
<intent-filter>
1825
<action android:name="android.intent.action.MAIN" />
1926

0 commit comments

Comments
 (0)