You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Groovy
		
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Groovy
		
	
def localProperties = new Properties()
 | 
						|
def localPropertiesFile = rootProject.file('local.properties')
 | 
						|
if (localPropertiesFile.exists()) {
 | 
						|
    localPropertiesFile.withReader('UTF-8') { reader ->
 | 
						|
        localProperties.load(reader)
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
def flutterRoot = localProperties.getProperty('flutter.sdk')
 | 
						|
//if (flutterRoot == null) {
 | 
						|
//    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
 | 
						|
//}
 | 
						|
 | 
						|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
 | 
						|
if (flutterVersionCode == null) {
 | 
						|
    flutterVersionCode = '1'
 | 
						|
}
 | 
						|
 | 
						|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
 | 
						|
if (flutterVersionName == null) {
 | 
						|
    flutterVersionName = '1.0'
 | 
						|
}
 | 
						|
 | 
						|
apply plugin: 'com.android.application'
 | 
						|
apply plugin: 'com.huawei.agconnect'
 | 
						|
apply plugin: 'kotlin-android'
 | 
						|
apply plugin: 'com.google.gms.google-services'
 | 
						|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
 | 
						|
 | 
						|
android {
 | 
						|
    compileSdkVersion 30
 | 
						|
 | 
						|
    sourceSets {
 | 
						|
        main.java.srcDirs += 'src/main/kotlin'
 | 
						|
    }
 | 
						|
 | 
						|
    lintOptions {
 | 
						|
        disable 'MissingTranslation'
 | 
						|
        checkReleaseBuilds false
 | 
						|
        
 | 
						|
    }
 | 
						|
    
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
 | 
						|
        applicationId "com.ejada.hmg"
 | 
						|
        minSdkVersion 21
 | 
						|
        targetSdkVersion 30
 | 
						|
        versionCode flutterVersionCode.toInteger()
 | 
						|
        versionName flutterVersionName
 | 
						|
        multiDexEnabled true
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    buildTypes {
 | 
						|
        debug {}
 | 
						|
        release {
 | 
						|
            // TODO: Add your own signing config for the release build.
 | 
						|
            // Signing with the debug keys for now, so `flutter run --release` works.
 | 
						|
            signingConfig signingConfigs.debug
 | 
						|
        }
 | 
						|
        staging {
 | 
						|
            // Specifies a sorted list of fallback build types that the
 | 
						|
            // plugin should try to use when a dependency does not include a
 | 
						|
            // "staging" build type. You may specify as many fallbacks as you
 | 
						|
            // like, and the plugin selects the first build type that's
 | 
						|
            // available in the dependency.
 | 
						|
            matchingFallbacks = ['debug', 'qa', 'release']
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
flutter {
 | 
						|
    source '../..'
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
 | 
						|
    implementation "com.google.firebase:firebase-messaging:21.0.0"
 | 
						|
//    implementation ('com.google.firebase:firebase-inappmessaging-display:19.1.2',{
 | 
						|
//        exclude group: 'com.google.protobuf',module: 'protobuf-javalite'
 | 
						|
//        exclude group: 'com.google.protobuf',module: 'protobuf-lite'
 | 
						|
//    })
 | 
						|
    implementation 'pub.devrel:easypermissions:0.4.0'
 | 
						|
//    implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'
 | 
						|
   // implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'
 | 
						|
    implementation 'com.google.guava:guava:27.0.1-android'
 | 
						|
    // Dependency on local binaries
 | 
						|
    implementation fileTree(dir: 'libs', include: ['*.jar'])
 | 
						|
    implementation 'com.google.code.gson:gson:2.8.6'
 | 
						|
 | 
						|
    // Dependency on a remote binary
 | 
						|
//    implementation 'com.example.android:app-magic:12.3'
 | 
						|
 | 
						|
 | 
						|
    // Native Dependency
 | 
						|
    implementation "org.jetbrains.anko:anko-commons:0.10.4"
 | 
						|
    implementation 'com.github.kittinunf.fuel:fuel:2.3.0' //for JVM
 | 
						|
    implementation 'com.github.kittinunf.fuel:fuel-android:2.3.0'
 | 
						|
    implementation 'com.google.android.gms:play-services-location:17.1.0'//for Android
 | 
						|
     implementation 'com.google.android.gms:play-services-basement:17.5.0'
 | 
						|
 | 
						|
}
 |