123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- BEGIN_INCLUDE(manifest) -->
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- ${ANDROID_MANIFEST_PACKAGE_OPTION}
- android:versionCode="${ANDROID_VERSION_NUMBER}"
- android:versionName="${ANDROID_VERSION_NAME}">
- <!-- SDK_VERSIONS -->
- <!-- OpenGL ES 3.0 -->
- <uses-feature android:glEsVersion="0x00030000" android:required="true" />
- <!-- Required for Kindle devices, which is based off Android 5.0, to access app specific public storage -->
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="21" />
- <!-- Allow TCP/IP. Needed for PerfHUD ES -->
- <uses-permission android:name="android.permission.INTERNET" />
- <!-- Required to poll the state of the network connection and respond to changes (Obb Download)-->
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <!-- Required to check whether Wi-Fi is enabled (Obb Download) -->
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
- <!-- Required to keep CPU alive while downloading the Obb files (NOT to keep screen awake) -->
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <!-- Required to for IAP -->
- <uses-permission android:name="com.android.vending.BILLING" />
- <application
- android:icon="@mipmap/app_icon"
- android:label="@string/app_name"
- ${ANDROID_MULTI_WINDOW} >
- <!-- Our activity loads the generated bootstrapping class in order to prelaod any third party shared libraries -->
- <activity
- android:name="${ANDROID_PROJECT_ACTIVITY}"
- android:screenOrientation="${ANDROID_SCREEN_ORIENTATION}"
- android:configChanges="${ANDROID_CONFIG_CHANGES}"
- android:exported="true" > <!-- needed when an intent-filter is used
- https://developer.android.com/guide/topics/manifest/activity-element#exported -->
- <!-- Multi-window properties, following line can be blank if not specified -->
- ${ANDROID_MULTI_WINDOW_PROPERTIES}
- <!-- Tell NativeActivity the name of or .so -->
- <meta-data android:name="android.app.lib_name"
- android:value="${ANDROID_LAUNCHER_NAME}" />
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- ${OCULUS_INTENT_FILTER_CATEGORY}
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:name="com.amazon.lumberyard.io.obb.ObbDownloaderActivity"
- android:launchMode="singleTask"
- android:screenOrientation="${ANDROID_SCREEN_ORIENTATION}"/>
- <!-- Services for IAP -->
- <service android:name="com.android.vending.billing.InAppBillingService" />
- <!-- Services for downloading the Obb -->
- <service android:name="com.amazon.lumberyard.io.obb.ObbDownloaderService" />
- <receiver android:name="com.amazon.lumberyard.io.obb.ObbDownloaderAlarmReceiver" />
- <!-- Samsung DEX specific properties, the following line(s) can be blank if not specified -->
- ${SAMSUNG_DEX_KEEP_ALIVE}
- ${SAMSUNG_DEX_LAUNCH_WIDTH}
- ${SAMSUNG_DEX_LAUNCH_HEIGHT}
- </application>
- </manifest>
- <!-- END_INCLUDE(manifest) -->
|