blackkara
blackkara

Reputation: 5052

Cannot find local variable

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 ?

Upvotes: 1

Views: 4092

Answers (2)

wfei
wfei

Reputation: 11

you may not open debuggable.

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

steps

Upvotes: 1

wgyscsf
wgyscsf

Reputation: 41

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

Upvotes: 2

Related Questions