xref: /aosp_15_r20/external/oboe/samples/hello-oboe/src/main/AndroidManifest.xml (revision 05767d913155b055644481607e6fa1e35e2fe72c)
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.google.oboe.samples.hellooboe" >
4
5    <uses-feature android:name="android.hardware.audio.output" android:required="true" />
6    <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
7    <application
8        android:allowBackup="false"
9        android:fullBackupContent="false"
10        android:supportsRtl="true"
11        android:icon="@mipmap/ic_launcher"
12        android:label="@string/app_name"
13        android:theme="@style/AppTheme" >
14      <activity
15          android:name="com.google.oboe.samples.hellooboe.MainActivity"
16          android:label="@string/app_name"
17          android:screenOrientation="portrait"
18          android:exported="true">
19        <intent-filter>
20          <action android:name="android.intent.action.MAIN" />
21          <category android:name="android.intent.category.LAUNCHER" />
22        </intent-filter>
23      </activity>
24    </application>
25</manifest>
26