Failed resolution of: Lcom/google/android/aidl/BaseStub;

与世无争的帅哥 提交于 2020-07-20 07:38:06

问题


I updated the

implementation 'com.android.installreferrer:installreferrer:X'   

from 1.1.2 to 2.0

then started getting this error:

Process: com.tomatedigital.lottogram, PID: 13424
    java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/aidl/BaseStub;
        at com.android.installreferrer.api.InstallReferrerClientImpl.startConnection(InstallReferrerClientImpl.java:36)
        at com.tomatedigital.lottogram.app.App.saveReferralInfo(App.java:221)
        at com.tomatedigital.lottogram.app.App.onCreate(App.java:102)
        at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1182)
        at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6460)
        at android.app.ActivityThread.access$1300(ActivityThread.java:219)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1859)
        at android.os.Handler.dispatchMessage(Handler.java:107)
        at android.os.Looper.loop(Looper.java:214)
        at android.app.ActivityThread.main(ActivityThread.java:7356)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)

the code was not changed from the last version (that worked fine)

final InstallReferrerClient mReferrerClient = InstallReferrerClient.newBuilder(this).build();
        try {
            mReferrerClient.startConnection(new InstallReferrerStateListener() {
                public void onInstallReferrerSetupFinished(int responseCode) {
                     //do stuff
                }

                @Override
                public void onInstallReferrerServiceDisconnected() {

                }
            });
        } catch (Exception e) {
            FirebaseCrashlytics.getInstance().recordException(e);
             

        }
    }

im testing on emulator with android 10 does anyone know what is the problem?

来源:https://stackoverflow.com/questions/62745288/failed-resolution-of-lcom-google-android-aidl-basestub

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!