mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 19:36:44 +02:00
82 lines
No EOL
4.7 KiB
XML
Executable file
82 lines
No EOL
4.7 KiB
XML
Executable file
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- IMPORTANT: Do not manually manipulate this automatically generated file, changes will be gone after the next build! -->
|
|
|
|
<manifest package="${ANDROID_APK_PACKAGE}" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="${ANDROID_APK_VERSION_NAME}" android:versionCode="${ANDROID_APK_VERSION_CODE}" android:installLocation="auto">
|
|
<application
|
|
android:hardwareAccelerated="true"
|
|
android:name="org.qtproject.qt5.android.bindings.QtApplication"
|
|
android:label="@string/AppDisplayName"
|
|
android:icon="@drawable/icon"
|
|
android:debuggable="${ANDROID_APK_DEBUGGABLE}">
|
|
|
|
<!-- VR MODE -->
|
|
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
|
|
|
|
<activity
|
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation"
|
|
android:name="${ANDROID_ACTIVITY_NAME}"
|
|
android:label="@string/AppDisplayName"
|
|
android:screenOrientation="landscape"
|
|
android:launchMode="singleTop"
|
|
${ANDROID_APK_THEME}>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
|
|
<meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
|
|
<meta-data android:name="android.app.repository" android:value="default"/>
|
|
<meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
|
|
<meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
|
|
<!-- Deploy Qt libs as part of package -->
|
|
<meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
|
|
<meta-data android:name="android.app.bundled_in_lib_resource_id" android:resource="@array/bundled_in_lib"/>
|
|
<meta-data android:name="android.app.bundled_in_assets_resource_id" android:resource="@array/bundled_in_assets"/>
|
|
<!-- Run with local libs -->
|
|
<meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
|
|
<meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
|
|
<meta-data android:name="android.app.load_local_libs" android:value="-- %%INSERT_LOCAL_LIBS%% --"/>
|
|
<meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
|
|
<meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
|
|
<!-- Messages maps -->
|
|
<meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
|
|
<meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
|
|
<meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
|
|
<!-- Messages maps -->
|
|
|
|
<!-- Splash screen -->
|
|
<!-- <meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/> -->
|
|
|
|
${ANDROID_EXTRA_ACTIVITY_XML}
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.oculusvr.vrlib.PlatformActivity"
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="landscape"
|
|
android:configChanges="screenSize|orientation|keyboardHidden|keyboard">
|
|
</activity>
|
|
|
|
${ANDROID_EXTRA_APPLICATION_XML}
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="${ANDROID_API_LEVEL}" android:targetSdkVersion="${ANDROID_API_LEVEL}"/>
|
|
|
|
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
|
|
Remove the comment if you do not require these default permissions. -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<!-- camera permission required for GEAR VR passthrough camera -->
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
|
|
Remove the comment if you do not require these default features. -->
|
|
|
|
<!-- Tell the system this app requires OpenGL ES 3.0. -->
|
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
|
</manifest> |