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 <intent-filter> 19 <action android:name="android.intent.action.MAIN" /> 20 <category android:name="android.intent.category.LAUNCHER" /> 21 </intent-filter> 22 </activity> 23 </application> 24</manifest> 25