Project

General

Profile

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

magiccube / src / main / AndroidManifest.xml @ 306aa049

1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
    package="org.distorted.main">
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
    <uses-permission android:name="android.permission.INTERNET" />
10
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
11

    
12
    <application
13
        android:allowBackup="true"
14
        android:icon="@mipmap/icon"
15
        android:label="@string/app_name"
16
        android:supportsRtl="true"
17
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
18

    
19
        <meta-data
20
            android:name="firebase_crashlytics_collection_enabled"
21
            android:value="${crashlyticsCollectionEnabled}"
22
        />
23

    
24
        <activity android:name="org.distorted.main.RubikActivity" android:exported="true" android:screenOrientation="portrait">
25
            <intent-filter>
26
                <action android:name="android.intent.action.MAIN" />
27
                <category android:name="android.intent.category.LAUNCHER" />
28
            </intent-filter>
29
        </activity>
30

    
31
        <activity android:name="org.distorted.tutorials.TutorialActivity" android:exported="false" android:screenOrientation="portrait"/>
32
        <activity android:name="org.distorted.config.ConfigActivity" android:exported="false" android:screenOrientation="portrait"/>
33
        <activity android:name="org.distorted.bandaged.BandagedCreatorActivity" android:exported="false" android:screenOrientation="portrait"/>
34
        <activity android:name="org.distorted.bandaged.BandagedPlayActivity" android:exported="false" android:screenOrientation="portrait"/>
35

    
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
    </application>
44
</manifest>
    (1-1/1)