Skip to content

Commit fb52018

Browse files
committed
android-interop-testing: Remove usage of MultiDexApplication
Since we're only supporting API levels 23+, all the supported Android versions handle multidex natively, and without any bugs to workaround. See also b/476359563
1 parent 310ce7b commit fb52018

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

android-interop-testing/src/androidTest/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
android:name="androidx.test.runner.AndroidJUnitRunner"
66
android:targetPackage="io.grpc.android.integrationtest" />
77

8-
<application
9-
android:name="android.support.multidex.MultiDexApplication" >
8+
<application>
109
</application>
1110

1211
</manifest>

android-interop-testing/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
android:allowBackup="true"
1515
android:icon="@mipmap/ic_launcher"
1616
android:label="@string/app_name"
17-
android:theme="@style/Base.V7.Theme.AppCompat.Light"
18-
android:name="androidx.multidex.MultiDexApplication">
17+
android:theme="@style/Base.V7.Theme.AppCompat.Light">
1918
<activity
2019
android:name=".TesterActivity"
2120
android:exported="true">

0 commit comments

Comments
 (0)