2
0

AndroidManifest.xml 752 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.companyname.texturedquad">
  3. <application android:label="TexturedQuad" android:icon="@mipmap/icon">
  4. <activity android:name=".MainActivity"
  5. android:label="TexturedQuad"
  6. android:theme="@style/MainTheme"
  7. android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|screenLayout|smallestScreenSize"
  8. android:screenOrientation="fullSensor">
  9. <intent-filter>
  10. <action android:name="android.intent.action.MAIN" />
  11. <category android:name="android.intent.category.LAUNCHER" />
  12. </intent-filter>
  13. </activity>
  14. </application>
  15. </manifest>