forked from CatVodTVOfficial/TVBoxOSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (40 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
id 'com.android.library'
}
android {
compileSdkVersion 30
defaultConfig {
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
all {
ndk {
abiFilters 'armeabi-v7a'
}
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
releaseSimon.initWith(release)
releaseSimon {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation "androidx.annotation:annotation:1.3.0"
api "com.google.android.exoplayer:exoplayer-core:2.14.2"
api "com.google.android.exoplayer:exoplayer-dash:2.14.2"
api "com.google.android.exoplayer:exoplayer-hls:2.14.2"
api "com.google.android.exoplayer:exoplayer-rtsp:2.14.2"
api "com.google.android.exoplayer:extension-rtmp:2.14.2"
api "com.google.android.exoplayer:extension-okhttp:2.14.2"
api 'xyz.doikki.android.dkplayer:dkplayer-ui:3.3.5'
}