Skip to content

Commit 88599a9

Browse files
committed
trying to fix abstract method bug
1 parent d251528 commit 88599a9

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

app/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ android {
2020
minifyEnabled false
2121
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2222
}
23+
debug {
24+
minifyEnabled false
25+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
26+
}
2327
}
2428

2529
compileOptions {
@@ -42,7 +46,7 @@ dependencies {
4246
androidTestImplementation 'androidx.test:runner:1.2.0'
4347
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
4448
implementation project(path: ':goonj')
45-
// implementation('com.github.rever-ai:goonj:0.5.6') {
49+
// implementation('com.github.rever-ai:goonj:0.5.7') {
4650
// transitive = true
4751
// }
4852

@@ -65,8 +69,8 @@ dependencies {
6569
implementation "io.reactivex.rxjava2:rxkotlin:2.4.0"
6670
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
6771

68-
//Goonj
69-
72+
// //Goonj
73+
//
7074
// // AndroidX
7175
// implementation 'androidx.appcompat:appcompat:1.1.0'
7276
// implementation 'androidx.core:core-ktx:1.1.0'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
15-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
15+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1616
}
1717
}
1818

goonj/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlin-kapt'
55

66
apply plugin: 'com.github.dcendents.android-maven'
7+
78
group = 'com.github.rever-ai'
89

910

goonj/src/main/java/ai/rever/goonj/manager/LocalPlayerNotificationManager.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ internal object LocalPlayerNotificationManager {
7979
return track.bitmap
8080
}
8181

82+
override fun getCurrentSubText(player: Player?): String? {
83+
return "Goonj"
84+
}
8285
}
8386

8487
private val notificationListener = object : PlayerNotificationManager.NotificationListener {

0 commit comments

Comments
 (0)