1<?xml version="1.0" encoding="utf-8"?> 2 3<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:tools="http://schemas.android.com/tools" 5 package="com.test.sdk1_2" 6 android:versionCode="2"> 7 8 <application android:allowBackup="true" 9 android:debuggable="true" 10 android:icon="@mipmap/ic_launcher" 11 android:label="@string/app_name" 12 android:roundIcon="@mipmap/ic_launcher_round" 13 android:supportsRtl="true" 14 android:theme="@style/AppTheme"> 15 <activity android:name=".MainActivity" 16 android:label="@string/app_name" 17 android:theme="@style/AppTheme.NoActionBar" 18 android:exported="true"> 19 <intent-filter> 20 <action android:name="android.intent.action.MAIN"/> 21 22 <category android:name="android.intent.category.LAUNCHER"/> 23 </intent-filter> 24 </activity> 25 26 <sdk-library android:name="com.test.sdk1" android:versionMajor="2" /> 27 28 <!-- (b/197936012) Remove startup provider due to test timeout issue --> 29 <provider 30 android:name="androidx.startup.InitializationProvider" 31 android:authorities="${applicationId}.androidx-startup" 32 tools:node="remove" /> 33 34 </application> 35 36</manifest> 37