Project

General

Profile

Download (720 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / AndroidManifest.xml @ 0c52af30

1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
    package="org.distorted.magic">
3

    
4
    <uses-feature android:glEsVersion="0x00030001" android:required="true" />
5

    
6
    <application
7
        android:allowBackup="true"
8
        android:icon="@mipmap/icon"
9
        android:label="@string/app_name"
10
        android:supportsRtl="true"
11
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
12

    
13
        <activity android:name=".RubikActivity">
14
            <intent-filter>
15
                <action android:name="android.intent.action.MAIN" />
16
                <category android:name="android.intent.category.LAUNCHER" />
17
            </intent-filter>
18
        </activity>
19
    </application>
20
</manifest>
    (1-1/1)