// Generated file. Do not edit. def localProperties = new Properties() def localPropertiesFile = new File(buildscript.sourceFile.parentFile.parentFile, '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.library' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" group '{{androidIdentifier}}' version '1.0' android { compileSdkVersion 28 defaultConfig { minSdkVersion 16 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() versionName flutterVersionName {{#androidX}} testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" {{/androidX}} {{^androidX}} testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" {{/androidX}} } } flutter { source '../..' } dependencies { testImplementation 'junit:junit:4.12' {{#androidX}} implementation 'androidx.appcompat:appcompat:1.0.2' {{/androidX}} {{^androidX}} implementation 'com.android.support:support-v13:27.1.1' implementation 'com.android.support:support-annotations:27.1.1' {{/androidX}} }