|
|
|
@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
|
|
|
|
id "com.android.application"
|
|
|
|
|
|
|
|
id "com.google.gms.google-services"
|
|
|
|
|
|
|
|
id "kotlin-android"
|
|
|
|
|
|
|
|
id "dev.flutter.flutter-gradle-plugin"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def localProperties = new Properties()
|
|
|
|
def localProperties = new Properties()
|
|
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
|
|
if (localPropertiesFile.exists()) {
|
|
|
|
if (localPropertiesFile.exists()) {
|
|
|
|
@ -21,15 +28,9 @@ if (flutterVersionName == null) {
|
|
|
|
flutterVersionName = '1.0'
|
|
|
|
flutterVersionName = '1.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
android {
|
|
|
|
namespace = "com.cloud.solutions.mowater.ksa.customer"
|
|
|
|
namespace = "com.cloud.solutions.mowater.ksa.customer"
|
|
|
|
compileSdkVersion 34
|
|
|
|
compileSdkVersion 36
|
|
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
compileOptions {
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
@ -48,7 +49,7 @@ android {
|
|
|
|
defaultConfig {
|
|
|
|
defaultConfig {
|
|
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
|
|
applicationId "com.cloud.solutions.mowater.ksa.customer"
|
|
|
|
applicationId "com.cloud.solutions.mowater.ksa.customer"
|
|
|
|
minSdkVersion 23
|
|
|
|
minSdkVersion flutter.minSdkVersion
|
|
|
|
targetSdkVersion 33
|
|
|
|
targetSdkVersion 33
|
|
|
|
versionCode flutterVersionCode.toInteger()
|
|
|
|
versionCode flutterVersionCode.toInteger()
|
|
|
|
versionName flutterVersionName
|
|
|
|
versionName flutterVersionName
|
|
|
|
@ -74,5 +75,3 @@ dependencies {
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
|
|
|
|
// implementation 'com.google.firebase:firebase-analytics'
|
|
|
|
// implementation 'com.google.firebase:firebase-analytics'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|