1 |
05c044a5
|
Leszek Koltunski
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2 |
0c52af30
|
Leszek Koltunski
|
|
3 |
8fcd8cba
|
Leszek Koltunski
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
4 |
86cbdab1
|
Leszek Koltunski
|
<uses-feature android:name="android.hardware.faketouch" android:required="true" />
|
5 |
|
|
|
6 |
c7057b43
|
Leszek Koltunski
|
<supports-screens android:largeScreens="true" android:xlargeScreens="true" />
|
7 |
|
|
|
8 |
36e2cbdd
|
Leszek Koltunski
|
<uses-permission android:name="android.permission.INTERNET" />
|
9 |
1ef09d49
|
Leszek Koltunski
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
10 |
69338cfb
|
Leszek Koltunski
|
|
11 |
0c52af30
|
Leszek Koltunski
|
<application
|
12 |
|
|
android:allowBackup="true"
|
13 |
|
|
android:icon="@mipmap/icon"
|
14 |
|
|
android:label="@string/app_name"
|
15 |
e8f3534d
|
leszek
|
android:supportsRtl="true">
|
16 |
0c52af30
|
Leszek Koltunski
|
|
17 |
4026e706
|
Leszek Koltunski
|
<meta-data
|
18 |
|
|
android:name="firebase_crashlytics_collection_enabled"
|
19 |
|
|
android:value="${crashlyticsCollectionEnabled}"
|
20 |
|
|
/>
|
21 |
|
|
|
22 |
b42c8399
|
leszek
|
<activity android:name="org.distorted.main.MainActivity"
|
23 |
|
|
android:exported="true"
|
24 |
|
|
android:screenOrientation="portrait"
|
25 |
|
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation">
|
26 |
0c52af30
|
Leszek Koltunski
|
<intent-filter>
|
27 |
|
|
<action android:name="android.intent.action.MAIN" />
|
28 |
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
29 |
|
|
</intent-filter>
|
30 |
|
|
</activity>
|
31 |
61387e4f
|
Leszek Koltunski
|
|
32 |
b1e796f1
|
Leszek Koltunski
|
<activity android:name="org.distorted.tutorials.TutorialActivity" android:exported="false" android:screenOrientation="portrait"/>
|
33 |
5b22f901
|
leszek
|
<activity android:name="org.distorted.info.InfoActivity" android:exported="false" android:screenOrientation="portrait"/>
|
34 |
7ee8337b
|
leszek
|
<activity android:name="org.distorted.bandaged.BandagedActivity" android:exported="false" android:screenOrientation="portrait"/>
|
35 |
c7238c67
|
Leszek Koltunski
|
<activity android:name="org.distorted.purchase.PurchaseActivity" android:exported="false" android:screenOrientation="portrait"/>
|
36 |
cb30e768
|
leszek
|
<activity android:name="org.distorted.solverui.SolverActivity" android:exported="false" android:screenOrientation="portrait"/>
|
37 |
e9245b7b
|
leszek
|
<activity android:name="org.distorted.patternui.PatternActivity" android:exported="false" android:screenOrientation="portrait"/>
|
38 |
7ee8337b
|
leszek
|
<activity android:name="org.distorted.playui.PlayActivity" android:exported="false" android:screenOrientation="portrait"/>
|
39 |
58fd2ec0
|
leszek
|
<activity android:name="org.distorted.config.ConfigActivity" android:exported="false" android:screenOrientation="portrait"/>
|
40 |
a59f38d6
|
Leszek Koltunski
|
|
41 |
|
|
<service
|
42 |
|
|
android:name="org.distorted.messaging.RubikMessagingService"
|
43 |
|
|
android:exported="false">
|
44 |
|
|
<intent-filter>
|
45 |
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
46 |
|
|
</intent-filter>
|
47 |
|
|
</service>
|
48 |
0c52af30
|
Leszek Koltunski
|
</application>
|
49 |
|
|
</manifest>
|