From 002f9194a6f298dd6b7b1724caf65e7bee0c5615 Mon Sep 17 00:00:00 2001 From: RTAzis Date: Wed, 27 Mar 2024 00:59:38 +0200 Subject: [PATCH] [Bug | Android] Namespace is missing #20 - Added namespace declaration --- android/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 4bd238b..96dba31 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -42,5 +42,8 @@ android { defaultConfig { minSdkVersion 16 + if (project.android.hasProperty('namespace')) { + namespace 'com.dominikkrajcer.system_date_time_format' + } } }