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.

47 lines
741 B
Groovy

group 'com.baidu.flutter_bmfmap'
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
}
lintOptions {
disable 'InvalidPackage'
}
}
repositories {
mavenLocal()
}
dependencies {
implementation fileTree(includes: ['*.jar'], dir: 'libs')
implementation rootProject.findProject(":flutter_bmfbase")
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
}