From d79db8ce3200325004de739af361e01ccbba549a Mon Sep 17 00:00:00 2001 From: FongMi Date: Sat, 18 Feb 2023 13:07:05 +0800 Subject: [PATCH] Clean code --- app/build.gradle | 2 +- gradle.properties | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index da5bd8ba..e2563af5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,7 +11,7 @@ android { minSdk 17 targetSdk 29 ndk { abiFilters "armeabi-v7a" } - buildConfigField "String", "APP_ID", "\"5dde4e1bdf9e4966b387ba58f4b3fdc3\"" + buildConfigField("String", "APP_ID", "\"${appId}\"") } buildTypes { diff --git a/gradle.properties b/gradle.properties index dab7c28b..78dee4e0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,4 +18,5 @@ android.useAndroidX=true # Enables namespacing of each library's R class so that its R class includes only the # resources declared in the library itself and none from the library's dependencies, # thereby reducing the size of the R class for that library -android.nonTransitiveRClass=true \ No newline at end of file +android.nonTransitiveRClass=true +appId=5dde4e1bdf9e4966b387ba58f4b3fdc3 \ No newline at end of file