I have a big problem and I didn't find any solution for solve it first when I upload the app in the Google play I found this warning:
There is no deobfuscation file associated with this App Bundle
After research I found the problem with mapping file and I minifyEnabled = true
but when I added I found that problem Missing class: org.conscrypt.ConscryptHostnameVerifier
and when I try open the app not working when I try call API not response any thing
and I searched a lot but without any benefit and I found all of solution but didn't success any solution with me. Anybody has a solution ?
Edit 1:
When I debug the error I found that error "Parameter specified as non-null is null: method j.u.b.g.e, parameter message" in that method
protected fun <T> withLiveData(liveData: APILiveData<T>): SingleObserver<DataWrapper<T>> {
return object : SingleObserver<DataWrapper<T>> {
override fun onError(e: Throwable) {}
override fun onSuccess(t: DataWrapper<T>) = liveData.postValue(t)
override fun onSubscribe(d: Disposable) {
compositeDisposable.add(d)
}
}
}