summaryrefslogtreecommitdiff
path: root/tests/lldb/java/KernelVariables/AndroidManifest.xml
blob: a1e2a746447a6191101db720731cfcab2fcbed6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.rs.kernelvariables">
    <uses-sdk android:minSdkVersion="21" />
    <application android:label="KernelVariables"
                 android:hardwareAccelerated="true">
        <activity android:name="MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>