| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.companyname.shattereffectsample"
- android:versionCode="1"
- android:versionName="1.0">
- <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
- <application android:label="Shatter Effect" android:icon="@mipmap/icon">
- <activity android:name="android.app.NativeActivity"
- android:label="Shatter Effect"
- android:configChanges="orientation|screenSize|keyboardHidden"
- android:screenOrientation="landscape"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
|