Android Studio库运行时错误存根!在com.amazon.device.messaging.ADMMessageReceiver。<init>()</init>

时间:2015-02-20 23:11:48

标签: android android-gradle amazon-device-messaging

我的android库项目的libs文件夹中有android-device-messaging-1.0.1.jar。在我的主项目中,我正在使用这个库项目,当我尝试运行程序时,我收到了Stub错误。虽然我使用了提供的范围,但jar包含在主应用程序中。我如何解决这个问题,我在这里做错了什么。我使用的是2.2级和Android Studio 1.0

my-library-project:

    apply plugin: 'com.android.library'

    dependencies {
        compile 'com.android.support:appcompat-v7:20.0.+'
        provided files('libs/amazon-device-messaging-1.0.1.jar')
    }

这是我使用库项目的主要应用程序

my-main-application:
apply plugin: 'android'

dependencies {
            compile project(':my-library-project')
        }

0 个答案:

没有答案