mirror of
https://github.com/BetterAndroid/PanguText.git
synced 2025-09-07 03:05:30 +08:00
Initial commit
This commit is contained in:
29
demo-android/src/main/AndroidManifest.xml
Normal file
29
demo-android/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.DefaultAppTheme"
|
||||
tools:targetApi="31">
|
||||
|
||||
<activity
|
||||
android:name=".ui.MainActivity"
|
||||
android:exported="true"
|
||||
android:windowSoftInputMode="adjustResize|stateAlwaysHidden">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".ui.ListActivity"
|
||||
android:exported="false"
|
||||
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
||||
</application>
|
||||
</manifest>
|
Reference in New Issue
Block a user