forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
19
Kha/Tools/khamake/Data/android/main/AndroidManifest.xml
Normal file
19
Kha/Tools/khamake/Data/android/main/AndroidManifest.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="{package}" android:installLocation="{installLocation}">{permissions}
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:supportsRtl="true">
|
||||
<activity android:name="tech.kode.kha.KhaActivity"
|
||||
android:label="@string/app_name"
|
||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
|
||||
android:screenOrientation="{screenOrientation}"
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">{name}</string>
|
||||
</resources>
|
Reference in New Issue
Block a user