| plugins { |
| id "com.android.application" |
| id "kotlin-android" |
| id "dev.flutter.flutter-gradle-plugin" |
| } |
| |
| def localProperties = new Properties() |
| def localPropertiesFile = rootProject.file('local.properties') |
| if (localPropertiesFile.exists()) { |
| localPropertiesFile.withReader('UTF-8') { reader -> |
| localProperties.load(reader) |
| } |
| } |
| |
| def flutterVersionCode = localProperties.getProperty('flutter.versionCode') |
| if (flutterVersionCode == null) { |
| flutterVersionCode = '1' |
| } |
| |
| def flutterVersionName = localProperties.getProperty('flutter.versionName') |
| if (flutterVersionName == null) { |
| flutterVersionName = '1.0' |
| } |
| |
| android { |
| compileSdkVersion flutter.compileSdkVersion |
| ndkVersion flutter.ndkVersion |
| namespace 'io.flutter.cronet_http_example' |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_11 |
| targetCompatibility JavaVersion.VERSION_11 |
| } |
| |
| kotlinOptions { |
| jvmTarget = '11' |
| } |
| |
| sourceSets { |
| main.java.srcDirs += 'src/main/kotlin' |
| } |
| |
| defaultConfig { |
| applicationId "io.flutter.cronet_http_example" |
| // api-level/minSdkVersion should be help in sync in: |
| // - .github/workflows/cronet.yml |
| // - pkgs/cronet_http/android/build.gradle |
| // - pkgs/cronet_http/example/android/app/build.gradle |
| minSdkVersion 24 |
| targetSdkVersion flutter.targetSdkVersion |
| versionCode flutterVersionCode.toInteger() |
| versionName flutterVersionName |
| } |
| |
| buildTypes { |
| 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 |
| } |
| } |
| } |
| |
| flutter { |
| source '../..' |
| } |
| |
| dependencies { |
| // ""com.google.android.gms:play-services-cronet" is only present so that |
| // `jnigen` will work. Applications should not include this line. |
| // The version should be synced with `pkgs/cronet_http/android/build.gradle`. |
| implementation "com.google.android.gms:play-services-cronet:18.0.1" |
| } |