You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
996 B
41 lines
996 B
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compileOnly 'androidx.recyclerview:recyclerview:1.0.0'
|
|
compileOnly 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
compileOnly 'androidx.appcompat:appcompat:1.0.0'
|
|
compileOnly 'com.alibaba:fastjson:1.1.46.android'
|
|
|
|
compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar'])
|
|
|
|
compileOnly 'com.alibaba:fastjson:1.1.46.android'
|
|
}
|