feat: added android platform template

This commit is contained in:
2025-08-09 21:50:42 +03:00
parent 6bee6f44c4
commit 80d29a71ed
9 changed files with 258 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.MyCompany.MyGame"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="36" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<application android:label="MyGame" />
</manifest>