1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright 2021 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17<manifest xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:tools="http://schemas.android.com/tools" 19 package="com.google.android.exoplayer2.transformerdemo"> 20 <uses-sdk /> 21 22 <uses-permission android:name="android.permission.INTERNET"/> 23 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 24 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 25 26 <application 27 android:allowBackup="false" 28 android:icon="@mipmap/ic_launcher" 29 android:label="@string/app_name" 30 android:theme="@style/Theme.AppCompat" 31 android:taskAffinity="" 32 tools:targetApi="29"> 33 <activity android:name=".ConfigurationActivity" 34 android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode" 35 android:launchMode="singleTop" 36 android:label="@string/app_name" 37 android:exported="true" 38 android:theme="@style/Theme.MaterialComponents.DayNight.NoActionBar"> 39 <intent-filter> 40 <action android:name="android.intent.action.MAIN"/> 41 <category android:name="android.intent.category.LAUNCHER"/> 42 </intent-filter> 43 <intent-filter> 44 <action android:name="com.google.android.exoplayer2.transformerdemo.action.VIEW"/> 45 <category android:name="android.intent.category.DEFAULT"/> 46 <data android:scheme="http"/> 47 <data android:scheme="https"/> 48 <data android:scheme="content"/> 49 <data android:scheme="asset"/> 50 <data android:scheme="file"/> 51 </intent-filter> 52 </activity> 53 <activity android:name=".TransformerActivity" 54 android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode" 55 android:launchMode="singleTop" 56 android:label="@string/app_name" 57 android:exported="true" 58 android:theme="@style/Theme.MaterialComponents.DayNight.NoActionBar"/> 59 </application> 60</manifest> 61