无法在 API 27 中实例化接收器 com.parse.ParseBroadcastReceiver:java.lang.ClassNotFoundExceptio

Posted

技术标签:

【中文标题】无法在 API 27 中实例化接收器 com.parse.ParseBroadcastReceiver:java.lang.ClassNotFoundExceptio【英文标题】:Unable to instantiate receiver com.parse.ParseBroadcastReceiver: java.lang.ClassNotFoundExceptio in API 27 【发布时间】:2019-10-29 05:18:20 【问题描述】:

我对@9​​87654321@ 有疑问。一切正常,直到我们进入 API 27。现在我们得到java.lang.RuntimeException,每次进入睡眠状态和唤醒设备后应用程序都会崩溃。 贝娄是我的代码。

在我的应用程序类中

public class PopeApp extends Application 

public void onCreate()

    Parse.enableLocalDatastore(this);

      Parse.initialize(new Parse.Configuration.Builder(this)
        .applicationId(Defines.parseApplicationID)
        .clientKey(Defines.parseClientKey)
        .server(Defines.parseURL)
      .build()
    );

androidManifest.xml

    <receiver android:name="com.parse.ParseBroadcastReceiver">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
            <action android:name="android.intent.action.USER_PRESENT" />
        </intent-filter>
    </receiver>
    <receiver
        android:name="com.parse.ParsePushBroadcastReceiver"
        android:exported="false">
        <intent-filter>
            <action android:name="com.parse.push.intent.RECEIVE" />
            <action android:name="com.parse.push.intent.DELETE" />
            <action android:name="com.parse.push.intent.OPEN" />
            <action android:name="1" />
        </intent-filter>
    </receiver>
    <receiver
        android:name="com.parse.GcmBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND">
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <!--              IMPORTANT: Change "com.parse.starter" to match your app's package name. -->
            <category android:name="com.MidCenturyMedia.Shopper.light" />
        </intent-filter>
    </receiver>

【问题讨论】:

你的 gradle 文件显示了什么,用于 proguard 和 depencies? 这是 gradle 文件中的依赖项:compile ('com.github.parse-community.Parse-SDK-Android:parse:1.18.5') exclude group: 'com.android.support' , 模块:'support-v4' 【参考方案1】:

这是 Stack Trase:

android.app.ActivityThread.handleReceiver(ActivityThread.java:3290)
android.app.ActivityThread.-wrap20(ActivityThread.java)
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1715)
android.os.Handler.dispatchMessage(Handler.java:102)
android.os.Looper.loop(Looper.java:154)
android.app.ActivityThread.main(ActivityThread.java:6682)
java.lang.reflect.Method.invoke(Native Method)
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1520)
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1410)

【讨论】:

以上是关于无法在 API 27 中实例化接收器 com.parse.ParseBroadcastReceiver:java.lang.ClassNotFoundExceptio的主要内容,如果未能解决你的问题,请参考以下文章

无法在 main() 方法中实例化字段(实例变量)。为啥??爪哇

启用 Proguard 后无法实例化片段

我收到此错误。DraggableGridView 无法实例化

“无法实例化活动 ComponentInfo”代表啥?

无法在以前工作的脚本上实例化类

为啥我的通用服务出现“无法实例化实现类型”错误?