我的 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')
}