/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Data/Platform/Android/AndroidManifest.xml
40 строк
2 KB
Sanakan8472
Android x64 Emulator Testing (#1279)
06 май 2024, 22:19
Не верифицирован
06 май 2024, 22:19
6fccd65
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ezengine.${TARGET_NAME}" android:versionCode="1" android:versionName="1.0"> <!-- 26 Introduces Vulkan 1.0, 29 requires Vulkan 1.1 --> <uses-sdk android:minSdkVersion="29" android:targetSdkVersion="29" /> <!-- Permissions --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- This .apk has no Java code itself, so set hasCode to false.--> <application android:debuggable="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:hasCode="false"> <!-- Our activity is the built-in NativeActivity framework class. This will take care of integrating with our NDK code. --> <activity android:name="android.app.NativeActivity" android:label="@string/app_name" android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden|screenSize"> <!-- Tell NativeActivity the name of our .so --> <meta-data android:name="android.app.lib_name" android:value="${TARGET_NAME}" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> <!-- END_INCLUDE(manifest) -->