I set same build types for debug and release,
buildTypes {
debug {
buildConfigField "String", "API_BASE_URL", "\"https://www.testUrl.com/api/\""
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release_key
}
release {
buildConfigField "String", "API_BASE_URL", "\"https://www.testUrl.com/api/\""
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release_key
}
}
But If I build with the release, I got the below error. Also, the server response is exactly same.
W/System.err: java.lang.NullPointerException: The mapper function returned a null value.
W/System.err: at b.a.e.b.b.a(Unknown Source)
W/System.err: at b.a.e.e.b.bs$a.onNext(Unknown Source)
W/System.err: at b.a.e.e.b.cm$a.onNext(Unknown Source)
W/System.err: at retrofit2.adapter.rxjava2.BodyObservable$BodyObserver.onNext(Unknown Source)
W/System.err: at retrofit2.adapter.rxjava2.BodyObservable$BodyObserver.onNext(Unknown Source)
W/System.err: at retrofit2.adapter.rxjava2.CallExecuteObservable.subscribeActual(Unknown Source)
W/System.err: at b.a.l.subscribe(Unknown Source)
W/System.err: at retrofit2.adapter.rxjava2.BodyObservable.subscribeActual(Unknown Source)
W/System.err: at b.a.l.subscribe(Unknown Source)
W/System.err: at b.a.e.e.b.cm$a.a(Unknown Source)
W/System.err: at b.a.e.e.b.cm.subscribeActual(Unknown Source)
W/System.err: at b.a.l.subscribe(Unknown Source)
W/System.err: at b.a.e.e.b.bs.subscribeActual(Unknown Source)
W/System.err: at b.a.l.subscribe(Unknown Source)
W/System.err: at b.a.e.e.b.bw.subscribeActual(Unknown Source)
W/System.err: at b.a.l.subscribe(Unknown Source)
W/System.err: at b.a.e.e.b.dd$b.run(Unknown Source)
W/System.err: at b.a.s$a.run(Unknown Source)
W/System.err: at b.a.e.g.j.run(Unknown Source)
W/System.err: at b.a.e.g.j.call(Unknown Source)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:272)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
W/System.err: at java.lang.Thread.run(Thread.java:761)
The problem comes from RxJava 2, which won't allow null
values to be passed down the stream. In particularly your case, you have a mapper function, that returns a null
value, which the exception clearly states.
You can reproduce that with following chunk of code:
Observable.just(1)
.map(integer -> null)
.test()
.assertError(throwable ->
"The mapper function returned a null value.".equals(throwable.getMessage()));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With