Skip to content

Commit

Permalink
Drop packageName from manifests for tests
Browse files Browse the repository at this point in the history
Tests are Gradle-only and keeping this in manifest results in namespace collision
Ref: https://developer.android.com/build/configure-app-module#change-namespace-for-testing

Signed-off-by: Aayush Gupta <[email protected]>
  • Loading branch information
theimpulson committed Aug 2, 2023
1 parent 866e108 commit 73f991f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stevesoltys.seedvault">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:extractNativeLibs="true" />
</manifest>
3 changes: 1 addition & 2 deletions contactsbackup/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
SPDX-FileCopyrightText: 2020 The Calyx Institute
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.calyxos.backup.contacts.test">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:extractNativeLibs="true" />

Expand Down

0 comments on commit 73f991f

Please sign in to comment.