30 lines
712 B
Groovy
30 lines
712 B
Groovy
apply plugin: 'com.android.library'
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion "27.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 27
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:27.1.1'
|
|
compile 'com.android.support:support-annotations:27.1.1'
|
|
compile 'com.github.chrisbanes.photoview:library:1.2.4'
|
|
|
|
|
|
implementation files('../app/libs/pldroid-player-2.1.9.jar')
|
|
|
|
}
|
|
|
|
//apply from: '../bintray.gradle' |