0

As is seen from the screenshot, cant pass second parameter. I'm sure that position parameter is not null when calling insertTrack method.

I'v looked similar questions, like this but it didn't solve.

Can anyone explain me what's my mistake ?

Community
  • 1
  • 1
blackkara
  • 4,900
  • 4
  • 28
  • 58
  • Please try the solution with the adb reset that I've described [here](http://stackoverflow.com/a/39469287/4733625) – Mykola Sep 13 '16 at 11:50

2 Answers2

2

you may open minifyEnabled,try close it。I slove it by close minifyEnabled

wgyscsf
  • 41
  • 4
1

you may not open debuggable.

buildTypes {
......
    debug {
        minifyEnabled false
        jniDebuggable true
        debuggable true
    }
......
}

steps

wfei
  • 11
  • 2