mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
This is blocking the upgrade to AGP 8.0.1. The Android Studio Upgrade Assistant refuses to run with the error: > Modules have the same package for their `main` and `androidTest` > artifacts > > The package specifications in `AndroidManifest.xml` files define the > same package for the `main` and `androidTest` artifacts, in the > following modules: `effect`, `muxer`, `transformer`, `test_exoplayer_abr`, `test_exoplayer_performance`, and `container`. This change also adds the `.test` suffix to `test/AndroidManifest.xml` files where it's missing, because although it's not mentioned in the Upgrade Assistant error it does cause problems later. ``` > Incorrect package="androidx.media3.database" found in source AndroidManifest.xml: libraries/database/src/test/AndroidManifest.xml. Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported. Recommendation: remove package="androidx.media3.database" from the source AndroidManifest.xml: libraries/database/src/test/AndroidManifest.xml. ``` Issue: androidx/media#409 PiperOrigin-RevId: 533460180
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2022 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="androidx.media3.effect.test">
|
|
|
|
<uses-sdk/>
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
tools:ignore="MissingApplicationIcon,HardcodedDebugMode"
|
|
android:usesCleartextTraffic="true"/>
|
|
|
|
<instrumentation
|
|
android:targetPackage="androidx.media3.effect.test"
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"/>
|
|
|
|
</manifest>
|