blob: 393daba6fb39e48af1b1a7bfa95959da466b4719 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.rs.levels">
<uses-sdk android:minSdkVersion="14" />
<application android:label="Levels RS"
android:hardwareAccelerated="true">
<activity android:name="LevelsRSActivity"
android:label="Levels RS">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="LevelsDalvikActivity"
android:label="Levels Dalvik">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>