From b5920bcd96da8ebab9f11c6cc96a4c4161e065a2 Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Mon, 29 Apr 2024 20:57:12 +0200 Subject: [PATCH 1/2] Add Android namespace --- android/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index cb791ed..ad36ebc 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,6 +22,10 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { + // Conditional for compatibility with AGP <4.2. + if (project.android.hasProperty("namespace")) { + namespace 'dev.jerson.fat_rsa' + } compileSdkVersion 31 defaultConfig { From 48b396e7fb3bba206b1f35624ca415ddcd268f9b Mon Sep 17 00:00:00 2001 From: nilsreichardt Date: Mon, 29 Apr 2024 21:08:26 +0200 Subject: [PATCH 2/2] Fix namespace --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index ad36ebc..432129f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -24,7 +24,7 @@ apply plugin: 'com.android.library' android { // Conditional for compatibility with AGP <4.2. if (project.android.hasProperty("namespace")) { - namespace 'dev.jerson.fat_rsa' + namespace 'dev.jerson.fast_rsa' } compileSdkVersion 31