Skip to content

Commit

Permalink
Fix namespaces in build.gradle
Browse files Browse the repository at this point in the history
Starting from AGP 8.0 packageName is replaced in favor of namespaces in gradle.
  • Loading branch information
ukaratkevich committed Jan 17, 2025
1 parent 24ba289 commit c8d5353
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demos/custom-tabs-navigation-callbacks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
apply plugin: 'com.android.application'

android {
namespace "com.google.androidbrowserhelper.demos.customtabsnavigationcallbacks"
namespace "com.google.androidbrowserhelper.demos.customtabssession"
compileSdkVersion 31

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.androidbrowserhelper.demos.customtabssession">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
Expand Down
2 changes: 1 addition & 1 deletion demos/twa-custom-launcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
apply plugin: 'com.android.application'

android {
namespace "com.google.androidbrowserhelper.launchtwa"
namespace "com.google.androidbrowserhelper.demo"
compileSdkVersion 31
defaultConfig {
applicationId "com.google.androidbrowserhelper"
Expand Down
3 changes: 1 addition & 2 deletions demos/twa-custom-launcher/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.androidbrowserhelper.demo">
xmlns:tools="http://schemas.android.com/tools">

<application
android:allowBackup="true"
Expand Down

0 comments on commit c8d5353

Please sign in to comment.