Commit 920ae5b1 authored by Pranav Shrihari's avatar Pranav Shrihari
Browse files

Update AndroidManifest.xml

parent e99c7a16
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
@@ -11,6 +11,22 @@
        android:supportsRtl="true"
        android:theme="@style/Theme.Game2D"
        tools:targetApi="31">
        <activity
            android:name=".SplashActivity"
            android:exported="true"
            android:theme="@style/SplashScreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".StartActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:screenOrientation="sensorLandscape"
            android:exported="true">
        </activity>
        <activity
            android:name=".ChalkGameActivity"
            android:exported="false" />