2020-08-11 14:48:10 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
android {
|
2021-12-08 15:27:07 +08:00
|
|
|
compileSdkVersion 30
|
|
|
|
|
buildToolsVersion '30.0.2'
|
2020-08-11 14:48:10 +08:00
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion 21
|
|
|
|
|
targetSdkVersion 27
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-08 15:27:07 +08:00
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
2020-08-11 14:48:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2021-11-24 16:21:09 +08:00
|
|
|
compile 'androidx.appcompat:appcompat:1.0.0'
|
|
|
|
|
compile 'androidx.annotation:annotation:1.0.0'
|
2020-08-11 14:48:10 +08:00
|
|
|
compile 'com.github.chrisbanes.photoview:library:1.2.4'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation files('../app/libs/pldroid-player-2.1.9.jar')
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//apply from: '../bintray.gradle'
|