From ad50f7daf672948c886ac273377d29f0f8ca92cb Mon Sep 17 00:00:00 2001 From: Till Friebe Date: Wed, 13 Dec 2023 15:32:07 +0100 Subject: [PATCH 1/2] Support Gradle ^8.0 --- android/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 3a32ad3..2eca134 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,6 +22,8 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { + namespace "flutter.plugins.phone_number" + compileSdkVersion 33 compileOptions { From ba7a8257c7e9eb3eb9bb7f0ab8249c2d034bfd95 Mon Sep 17 00:00:00 2001 From: Till Friebe Date: Wed, 13 Dec 2023 15:36:22 +0100 Subject: [PATCH 2/2] Mirror the package name used in the AndroidManifest --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 2eca134..32fb509 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,7 +22,7 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { - namespace "flutter.plugins.phone_number" + namespace "com.julienvignali.phone_number" compileSdkVersion 33