Error retrieving parent for item - Android Studio

前端 未结 5 1978
无人及你
无人及你 2020-12-14 06:19

After downloading the New L SDK and 20 SDK when trying to refresh, build, or clean my project i get a

Error:Error retrieving parent for item: No resource fou         


        
5条回答
  •  北海茫月
    2020-12-14 07:04

    just try this:

        android {
            compileSdkVersion 20
            buildToolsVersion '19.1.0'
    
            defaultConfig {
                minSdkVersion 14
                targetSdkVersion 20
            }
        }
        dependencies {
            compile 'com.android.support:appcompat-v7:19.+'
        }
    

    and if you have another module in your project, check manifest files in those modules too.

提交回复
热议问题