shim/app/src/main/AndroidManifest.xml (1.1 kb)
Modified: 02:24:48 66 026 (20 May 026) - 4 Days Ago
Download
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
   
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:label="Shim"
        android:supportsRtl="true"
        android:theme="@style/Theme.Shim">
        
        <activity
            android:name=".MainActivity"
            android:exported="true"
            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize|density"
            android:windowSoftInputMode="adjustResize|stateAlwaysVisible">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name=".ShimSettings"
            android:exported="false"
            android:label="Settings"
            android:windowSoftInputMode="adjustResize"
            android:parentActivityName=".MainActivity" />
            
    </application>

</manifest>