Skip to content

Commit

Permalink
Make package in test manifest consistent
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 406255369
  • Loading branch information
marcbaechinger authored and icbaker committed Nov 8, 2021
1 parent a60843e commit 222db48
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion libraries/common/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.common">
<manifest package="androidx.media3.common.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/datasource/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.datasource">
<manifest package="androidx.media3.datasource.test">
<uses-sdk/>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="androidx.media3.datasource.cronet">
package="androidx.media3.datasource.cronet.test">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Expand All @@ -28,7 +28,7 @@
tools:ignore="MissingApplicationIcon,HardcodedDebugMode"/>

<instrumentation
android:targetPackage="androidx.media3.datasource.cronet"
android:targetPackage="androidx.media3.datasource.cronet.test"
android:name="androidx.test.runner.AndroidJUnitRunner"/>

</manifest>
2 changes: 1 addition & 1 deletion libraries/datasource_cronet/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.datasource.cronet">
<manifest package="androidx.media3.datasource.cronet.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/datasource_rtmp/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.datasource.rtmp">
<manifest package="androidx.media3.datasource.rtmp.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/decoder/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.decoder">
<manifest package="androidx.media3.decoder.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/decoder_ffmpeg/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.decoder.ffmpeg">
<manifest package="androidx.media3.decoder.ffmpeg.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/decoder_flac/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.decoder.flac">
<manifest package="androidx.media3.decoder.flac.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/decoder_opus/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.decoder.opus">
<manifest package="androidx.media3.decoder.opus.test">
<uses-sdk/>
</manifest>
2 changes: 1 addition & 1 deletion libraries/decoder_vp9/src/test/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
-->

<manifest package="androidx.media3.decoder.vp9">
<manifest package="androidx.media3.decoder.vp9.test">
<uses-sdk/>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="androidx.media3.test.exoplayer.playback">
package="androidx.media3.test.exoplayer.playback.test">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
Expand All @@ -32,7 +32,7 @@
</application>

<instrumentation
android:targetPackage="androidx.media3.test.exoplayer.playback"
android:targetPackage="androidx.media3.test.exoplayer.playback.test"
android:name="androidx.test.runner.AndroidJUnitRunner"/>

</manifest>

0 comments on commit 222db48

Please sign in to comment.