1 |
40d02f47
|
leszek
|
<?xml version="1.0" encoding="utf-8"?>
|
2 |
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
3 |
|
|
|
4 |
|
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
5 |
|
|
<uses-feature android:name="android.hardware.faketouch" android:required="true" />
|
6 |
|
|
|
7 |
|
|
<supports-screens android:largeScreens="true" android:xlargeScreens="true" />
|
8 |
|
|
|
9 |
|
|
<application
|
10 |
|
|
android:allowBackup="true"
|
11 |
|
|
android:icon="@mipmap/ic_launcher"
|
12 |
|
|
android:label="@string/app_name"
|
13 |
|
|
android:supportsRtl="true"
|
14 |
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
15 |
|
|
|
16 |
|
|
<activity android:name="org.distorted.phasedsolver.SolverActivity" android:exported="true" android:screenOrientation="portrait">
|
17 |
|
|
<intent-filter>
|
18 |
|
|
<action android:name="android.intent.action.MAIN" />
|
19 |
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
20 |
|
|
</intent-filter>
|
21 |
|
|
</activity>
|
22 |
|
|
</application>
|
23 |
|
|
</manifest>
|