xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/android/AndroidManifest.xml (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifan<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2*d4726bddSHONG Yifan          package="com.example.androidapp"
3*d4726bddSHONG Yifan          android:versionCode="1"
4*d4726bddSHONG Yifan          android:versionName="0.1">
5*d4726bddSHONG Yifan    <uses-sdk
6*d4726bddSHONG Yifan            android:minSdkVersion="23"
7*d4726bddSHONG Yifan            android:targetSdkVersion="29"/>
8*d4726bddSHONG Yifan
9*d4726bddSHONG Yifan    <application
10*d4726bddSHONG Yifan            android:label="Rust Demo">
11*d4726bddSHONG Yifan        <activity
12*d4726bddSHONG Yifan                android:name=".AndroidMain"
13*d4726bddSHONG Yifan                android:label="Rust Demo">
14*d4726bddSHONG Yifan            <intent-filter>
15*d4726bddSHONG Yifan                <action android:name="android.intent.action.MAIN"/>
16*d4726bddSHONG Yifan                <category android:name="android.intent.category.LAUNCHER"/>
17*d4726bddSHONG Yifan            </intent-filter>
18*d4726bddSHONG Yifan        </activity>
19*d4726bddSHONG Yifan    </application>
20*d4726bddSHONG Yifan</manifest>
21