69 lines
2.5 KiB
Groovy
69 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.uiui.videoplayer"
|
|
minSdkVersion 24
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
multiDexEnabled true
|
|
ndk {
|
|
// add support lib
|
|
abiFilters 'armeabi-v7a' //, 'arm64-v8a'//, "mips" //,'armeabi''x86',, 'x86_64',
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.0'
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
|
|
|
// implementation 'cn.jzvd:jiaozivideoplayer:7.6.0'
|
|
implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.15'
|
|
implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native:1.0.15'
|
|
implementation 'com.github.ittianyu:BottomNavigationViewEx:2.0.4'
|
|
implementation 'com.github.ctiao:DanmakuFlameMaster:0.9.25'
|
|
implementation 'com.github.ctiao:ndkbitmap-armv7a:0.9.21'
|
|
implementation 'com.danikula:videocache:2.7.0'
|
|
implementation 'com.aliyun.sdk.android:AliyunPlayer:4.5.0-full'
|
|
implementation 'com.alivc.conan:AlivcConan:0.9.5'
|
|
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.1'
|
|
implementation 'com.scwang.smart:refresh-header-material:2.0.1'
|
|
implementation 'com.scwang.smart:refresh-footer-classics:2.0.1'
|
|
implementation 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'
|
|
implementation 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.4'
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.3'
|
|
implementation project(path: ':library')
|
|
}
|