mirror of
https://github.com/love2d/love-android.git
synced 2026-08-12 00:20:57 +02:00
78 lines
3.5 KiB
XML
78 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest package="org.love2d.android.executable"
|
|
android:installLocation="auto" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<!-- Disabled for PlayStore Build <uses-permission android:name="android.permission.RECORD_AUDIO" /> -->
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" />
|
|
|
|
<!-- OpenGL ES 2.0 -->
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/love"
|
|
android:label="LÖVE for Android"
|
|
android:usesCleartextTraffic="true" >
|
|
<service android:name="org.love2d.android.DownloadService" />
|
|
<activity
|
|
android:name="org.love2d.android.GameActivity"
|
|
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
|
|
android:label="LÖVE for Android"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="landscape"
|
|
android:resizeableActivity="false"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="tv.ouya.intent.category.GAME" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="file" />
|
|
<data android:mimeType="*/*" />
|
|
<data android:pathPattern=".*\\.love" />
|
|
<data android:host="*" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="content" />
|
|
<data android:host="*" />
|
|
<data android:mimeType="application/x-love-game" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="content" />
|
|
<data android:host="*" />
|
|
<data android:mimeType="application/octet-stream" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="org.love2d.android.DownloadActivity"
|
|
android:noHistory="true"
|
|
android:theme="@android:style/Theme.NoTitleBar" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="http"
|
|
android:host="*"
|
|
android:mimeType="*/*"
|
|
android:pathPattern=".*\\.love" />
|
|
<data android:scheme="https"
|
|
android:host="*"
|
|
android:mimeType="*/*"
|
|
android:pathPattern=".*\\.love" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|