Project

General

Profile

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

magiccube / src / main / AndroidManifest.xml @ e319fe78

1 0c52af30 Leszek Koltunski
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 1f9772f3 Leszek Koltunski
    package="org.distorted.main">
3 0c52af30 Leszek Koltunski
4 8fcd8cba Leszek Koltunski
    <uses-feature android:glEsVersion="0x00030000" android:required="true" />
5 86cbdab1 Leszek Koltunski
    <uses-feature android:name="android.hardware.faketouch" android:required="true" />
6
7 36e2cbdd Leszek Koltunski
    <uses-permission android:name="android.permission.INTERNET" />
8 0c52af30 Leszek Koltunski
9
    <application
10
        android:allowBackup="true"
11
        android:icon="@mipmap/icon"
12
        android:label="@string/app_name"
13
        android:supportsRtl="true"
14
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
15
16 4026e706 Leszek Koltunski
        <meta-data
17
            android:name="firebase_crashlytics_collection_enabled"
18
            android:value="${crashlyticsCollectionEnabled}"
19
        />
20
21 1f9772f3 Leszek Koltunski
        <activity android:name="org.distorted.main.RubikActivity">
22 0c52af30 Leszek Koltunski
            <intent-filter>
23
                <action android:name="android.intent.action.MAIN" />
24
                <category android:name="android.intent.category.LAUNCHER" />
25
            </intent-filter>
26
        </activity>
27
    </application>
28
</manifest>