Project

General

Profile

Download (2.16 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / AndroidManifest.xml @ 05c044a5

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
        android:supportsRtl="true"
16
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
17
18 4026e706 Leszek Koltunski
        <meta-data
19
            android:name="firebase_crashlytics_collection_enabled"
20
            android:value="${crashlyticsCollectionEnabled}"
21
        />
22
23 05fb345c Leszek Koltunski
        <activity android:name="org.distorted.main.RubikActivity" android:exported="true" android:screenOrientation="portrait">
24 0c52af30 Leszek Koltunski
            <intent-filter>
25
                <action android:name="android.intent.action.MAIN" />
26
                <category android:name="android.intent.category.LAUNCHER" />
27
            </intent-filter>
28
        </activity>
29 61387e4f Leszek Koltunski
30 b1e796f1 Leszek Koltunski
        <activity android:name="org.distorted.tutorials.TutorialActivity" android:exported="false" android:screenOrientation="portrait"/>
31
        <activity android:name="org.distorted.config.ConfigActivity" android:exported="false" android:screenOrientation="portrait"/>
32
        <activity android:name="org.distorted.bandaged.BandagedCreatorActivity" android:exported="false" android:screenOrientation="portrait"/>
33
        <activity android:name="org.distorted.bandaged.BandagedPlayActivity" android:exported="false" android:screenOrientation="portrait"/>
34 c7238c67 Leszek Koltunski
        <activity android:name="org.distorted.purchase.PurchaseActivity" android:exported="false" android:screenOrientation="portrait"/>
35 a59f38d6 Leszek Koltunski
36
        <service
37
            android:name="org.distorted.messaging.RubikMessagingService"
38
            android:exported="false">
39
            <intent-filter>
40
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
41
            </intent-filter>
42
        </service>
43 0c52af30 Leszek Koltunski
    </application>
44
</manifest>