Fix test_session_current to be consistent with other test packages

This change ensures that a different package is used for
`test_session_current/src/main:support_app` and
`test_session_current/src/androidTest:test_app` - previously they used
the same package which was unusual (and possibly led to some confusing
behaviour).

PiperOrigin-RevId: 563051818
This commit is contained in:
ibaker 2023-09-06 03:21:27 -07:00 committed by Copybara-Service
parent 8dcafa0398
commit 100af0b2de

View File

@ -14,6 +14,17 @@
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="androidx.media3.test.session.test">
<uses-sdk android:minSdkVersion="16"/>
<uses-sdk />
<application
android:name="androidx.multidex.MultiDexApplication"
android:allowBackup="false"
tools:ignore="MissingApplicationIcon,HardcodedDebugMode"
android:usesCleartextTraffic="true" >
<activity android:name="androidx.media3.test.session.common.SurfaceActivity"
android:configChanges="keyboardHidden|orientation|screenSize"/>
</application>
</manifest>