错误:包xxx不存在。如何正确包含构建中的包?

时间:2014-06-22 15:40:57

标签: android android-studio android-gradle

我试图使用来自https://code.google.com/p/android-wheel/的项目android-wheel 使用Android Studio。

我将它们作为模块导入并将依赖项放在' wheel'进入' wheeldemo'的build.gradle。

使用gradle构建它时显示错误,即使java文件中的导入不显示任何错误,该包也不存在: enter image description here

我不确定,我在这里失踪了什么。可能是显而易见的事情,因为我还不熟悉android编程。

编辑:这是wheeldemo模块的build.gradle:

apply plugin: 'android'
android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
    defaultConfig {
        applicationId 'kankan.wheel.demo'
        minSdkVersion 19
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
}

dependencies {
    compile project(':wheel')
}

1 个答案:

答案 0 :(得分:0)

确保“wheel”的build.gradle具有正确的插件类型。它应该是'android-library'而不是'com.android.application'。