1
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2
|
|
3
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
4
|
<uses-feature android:name="android.hardware.faketouch" android:required="true" />
|
5
|
|
6
|
<supports-screens android:largeScreens="true" android:xlargeScreens="true" />
|
7
|
|
8
|
<uses-permission android:name="android.permission.INTERNET" />
|
9
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
10
|
|
11
|
<application
|
12
|
android:allowBackup="true"
|
13
|
android:icon="@mipmap/icon"
|
14
|
android:label="@string/app_name"
|
15
|
android:supportsRtl="true"
|
16
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
17
|
|
18
|
<meta-data
|
19
|
android:name="firebase_crashlytics_collection_enabled"
|
20
|
android:value="${crashlyticsCollectionEnabled}"
|
21
|
/>
|
22
|
|
23
|
<activity android:name="org.distorted.main.MainActivity"
|
24
|
android:exported="true"
|
25
|
android:screenOrientation="portrait"
|
26
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation">
|
27
|
<intent-filter>
|
28
|
<action android:name="android.intent.action.MAIN" />
|
29
|
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
</intent-filter>
|
31
|
</activity>
|
32
|
|
33
|
<activity android:name="org.distorted.tutorials.TutorialActivity" android:exported="false" android:screenOrientation="portrait"/>
|
34
|
<activity android:name="org.distorted.config.ConfigActivity" android:exported="false" android:screenOrientation="portrait"/>
|
35
|
<activity android:name="org.distorted.bandaged.BandagedActivity" android:exported="false" android:screenOrientation="portrait"/>
|
36
|
<activity android:name="org.distorted.purchase.PurchaseActivity" android:exported="false" android:screenOrientation="portrait"/>
|
37
|
<activity android:name="org.distorted.solverui.SolverActivity" android:exported="false" android:screenOrientation="portrait"/>
|
38
|
<activity android:name="org.distorted.patternui.PatternActivity" android:exported="false" android:screenOrientation="portrait"/>
|
39
|
<activity android:name="org.distorted.playui.PlayActivity" android:exported="false" android:screenOrientation="portrait"/>
|
40
|
|
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
|
</application>
|
49
|
</manifest>
|