|
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion '29.0.0'
defaultConfig {
minSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api 'com.android.support:appcompat-v7:26.1.0'
api 'com.android.support:recyclerview-v7:26.1.0'
// compile 'com.github.bumptech.glide:glide:4.1.1'
api 'com.github.bumptech.glide:glide:4.2.0'
api 'com.github.chrisbanes:PhotoView:1.3.0'
api 'io.reactivex.rxjava2:rxjava:2.0.5'
api 'io.reactivex.rxjava2:rxandroid:2.0.1'
api project(':videolibrary:SmallVideoLib2')
// testApi 'junit:junit:4.12'
}
|