Skip to content

Commit 0d87c02

Browse files
committed
Enhance external-player: PlayerService, MediaSession/notification, speed control, subtitle stub and manifest updates
1 parent 4ba30be commit 0d87c02

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

external-player/build.gradle

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
23

34
android {
45
compileSdkVersion 33
@@ -8,7 +9,7 @@ android {
89
minSdkVersion 21
910
targetSdkVersion 33
1011
versionCode 1
11-
versionName "1.0"
12+
versionName "1.1"
1213
}
1314

1415
buildTypes {
@@ -21,12 +22,30 @@ android {
2122
buildFeatures {
2223
viewBinding true
2324
}
25+
26+
compileOptions {
27+
sourceCompatibility = 1.8
28+
targetCompatibility = 1.8
29+
}
30+
kotlinOptions {
31+
jvmTarget = "1.8"
32+
}
2433
}
2534

2635
dependencies {
36+
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
2737
implementation 'androidx.appcompat:appcompat:1.6.1'
2838
implementation 'com.google.android.material:material:1.9.0'
2939
implementation 'androidx.core:core-ktx:1.10.1'
3040
implementation 'com.google.android.exoplayer:exoplayer:2.19.0'
3141
implementation 'androidx.media:media:1.6.0'
42+
implementation 'androidx.lifecycle:lifecycle-service:2.6.1'
43+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
44+
implementation 'androidx.media:media-session:1.2.0'
45+
implementation 'androidx.activity:activity-ktx:1.8.0'
46+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
47+
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
48+
implementation 'androidx.vectordrawable:vectordrawable:1.2.0'
49+
implementation 'androidx.core:core:1.10.1'
50+
implementation 'com.github.bumptech.glide:glide:4.15.1'
3251
}

0 commit comments

Comments
 (0)