Skip to content

Commit

Permalink
Fix namespace issue in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-radhika-s committed Aug 3, 2023
1 parent bba2e1b commit 95a3528
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Publish
on:
push:
tags:
- '*'

on: [ push ]

jobs:
publish:
Expand Down
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ android {
composeOptions {
kotlinCompilerExtensionVersion compose_compiler_version
}
namespace 'com.canopas.campose.jetcountypicker'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/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.canopas.campose.jetcountypicker">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
Expand Down
1 change: 1 addition & 0 deletions countrypicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ android {
composeOptions {
kotlinCompilerExtensionVersion compose_compiler_version
}
namespace 'com.canopas.campose.countrypicker'

}

Expand Down
2 changes: 1 addition & 1 deletion countrypicker/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.canopas.campose.countrypicker">
<manifest>

</manifest>

0 comments on commit 95a3528

Please sign in to comment.