xref: /aosp_15_r20/external/cronet/third_party/jni_zero/sample/AndroidManifest.xml (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2017 The Chromium Authors
4  Use of this source code is governed by a BSD-style license that can be
5  found in the LICENSE file.
6-->
7
8<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.jni_zero">
9
10  <application>
11    <activity
12      android:name="org.jni_zero.sample.SampleActivity"
13      android:exported="true" >
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
21</manifest>
22