4

スタジオ専用のスレッドが見つからなかったので、これが重複していたら申し訳ありません。私はアンドロイドスタジオが初めてで、基本的な問題があります。最新のサポート ライブラリがすべてインストールされています。AppCompat ライブラリを使用しようとしていますが、styles.xml ファイルのこの行でエラーが発生しています。

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

エラーは次のとおりです。

Gradle: Execution failed for task ':FeedBackUser:processDebugResources'.
> Could not call IncrementalTask.taskAction() on task      ':FeedBackUser:processDebugResources'

これはgradleの依存関係です:

dependencies {

// You must install or update the Support Repository through the SDK manager to use this dependency.
// The Support Repository (separate from the corresponding library) can be found in the Extras category.
compile 'com.android.support:support-v4:18.0.0'

// You must install or update the Support Repository through the SDK manager to use this dependency.
// The Support Repository (separate from the corresponding library) can be found in the Extras category.
compile 'com.android.support:appcompat-v7:0.0.+'

}

v4 のサポートは問題なく、Android Studio の外部ライブラリ エリアに表示されます。AppCompat はそうではありません。他のサポート ライブラリと一緒にインストールするディレクトリにあるため、確実にインストールされます。私は何をすべきか?

4

1 に答える 1

5

依存関係を次のように変更してみてください:

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.android.support:appcompat-v7:18.0.+'
}
于 2013-11-10T09:12:27.610 に答える