mirror of
https://github.com/flutter/flutter.git
synced 2026-02-14 23:02:04 +08:00
40 lines
724 B
Cheetah
40 lines
724 B
Cheetah
group '{{androidIdentifier}}'
|
|
version '1.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.0'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
{{#androidX}}
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
{{/androidX}}
|
|
{{^androidX}}
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
{{/androidX}}
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|