2017-05-30 12:59:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.winehq.wine">
|
2017-07-03 20:57:50 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-07-03 20:59:40 +02:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
2018-01-03 10:24:36 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-05-30 12:59:15 +02:00
|
|
|
<application
|
|
|
|
android:icon="@drawable/wine"
|
|
|
|
android:label="Wine" >
|
|
|
|
<activity
|
|
|
|
android:label="Wine"
|
2017-06-12 19:12:10 +02:00
|
|
|
android:name=".WineActivity"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
|
|
|
android:screenOrientation="sensorLandscape" >
|
2017-05-30 12:59:15 +02:00
|
|
|
<intent-filter >
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|