1

Android Studio でビルドした新しい Android プロジェクトで roboguice 2.0 を参照しました。これが私のbuild.gradleファイルです。

        buildscript {
            repositories {
                mavenCentral()
            }
            dependencies {
                classpath 'com.android.tools.build:gradle:0.4.2'
            }
        }

        apply plugin: 'android-library'

        repositories {
            mavenCentral()
        }

        dependencies {
            compile files('/libs/android-support-v4.jar')

            compile 'org.roboguice:roboguice:2.0'
        }

        android {
            compileSdkVersion 17
            buildToolsVersion "17.0.0"

            defaultConfig {
                minSdkVersion 10
                targetSdkVersion 16
            }
        }

両方とも正常gradle cleanに実行されますが、IDE はエラーをgradle build報告していますElement resources must be declaredroboguice.xml

何か不足していますか、それとも IDE のバグですか?

4

1 に答える 1

1

謎解き、

の代わりに誤ってコピーroboguice.xmlしてしまいましたres/menures/values

于 2013-06-30T14:24:23.200 に答える