magic_box_2/harmony/build.gradle

40 lines
1.1 KiB
Groovy
Raw Normal View History

2019-06-10 15:37:26 +08:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//文件选择器
implementation 'com.leon:lfilepickerlibrary:1.8.0'
//载入界面
implementation 'com.kaopiz:kprogresshud:1.1.0'
2019-06-12 11:40:44 +08:00
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
2019-06-10 15:37:26 +08:00
}