Skip to content

Commit

Permalink
trying to fix abstract method bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kshivang committed Nov 12, 2019
1 parent d251528 commit 88599a9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 7 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
Expand All @@ -42,7 +46,7 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(path: ':goonj')
// implementation('com.github.rever-ai:goonj:0.5.6') {
// implementation('com.github.rever-ai:goonj:0.5.7') {
// transitive = true
// }

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

//Goonj

// //Goonj
//
// // AndroidX
// implementation 'androidx.appcompat:appcompat:1.1.0'
// implementation 'androidx.core:core-ktx:1.1.0'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}

Expand Down
1 change: 1 addition & 0 deletions goonj/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

apply plugin: 'com.github.dcendents.android-maven'

group = 'com.github.rever-ai'


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ internal object LocalPlayerNotificationManager {
return track.bitmap
}

override fun getCurrentSubText(player: Player?): String? {
return "Goonj"
}
}

private val notificationListener = object : PlayerNotificationManager.NotificationListener {
Expand Down

0 comments on commit 88599a9

Please sign in to comment.