Android Studio - Appcompat build fail values-v23/styles_bases.xml

后端 未结 13 2616
囚心锁ツ
囚心锁ツ 2020-12-15 03:57

I\'ll start from what I want to achieve: building the googlecast-manager example provided here: https://github.com/googlecast/GameManagerSamples I followed instructions here

13条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-15 04:33

    You have to update your SDK to the API 23 that is either not downloaded or not installed properly.

    In your build.gradle set

    compileSdkVersion 23
        buildToolsVersion "23.0.0"
    
    
        targetSdkVersion 23
    compile 'com.android.support:appcompat-v7:23.0.0'
    

提交回复
热议问题