mirror of
https://github.com/bevyengine/bevy
synced 2024-12-25 20:43:07 +00:00
25 lines
962 B
XML
25 lines
962 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
||
|
<application
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="Bevy Example"
|
||
|
android:roundIcon="@mipmap/ic_launcher"
|
||
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
||
|
tools:targetApi="33">
|
||
|
<activity
|
||
|
android:name=".MainActivity"
|
||
|
android:exported="true"
|
||
|
android:theme="@style/Theme.AppCompat.NoActionBar">
|
||
|
<meta-data
|
||
|
android:name="android.app.lib_name"
|
||
|
android:value="bevy_mobile_example" />
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|