Skip to content

Commit

Permalink
fix(iOS): missing package name on AndroidManifest.xml. (WIP)
Browse files Browse the repository at this point in the history
error Failed to build the app: No package name found. Found errors in .../android/app/src/main/AndroidManifest.xml.
  • Loading branch information
asafkorem committed Jun 12, 2023
1 parent 0a2b9ff commit 5393275
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions detox/test/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<manifest
package="com.example"
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example"
android:versionCode="1"
android:versionName="1.0"
>
Expand Down

0 comments on commit 5393275

Please sign in to comment.