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

后端 未结 13 2571
囚心锁ツ
囚心锁ツ 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:39

    I believe you should upgrade your compileSdkVersion. Check your build.grade file, should be something like:

    android {
        compileSdkVersion 23 // <- here
        buildToolsVersion "23.0.0" // <- here
    
        defaultConfig {
            applicationId "your.id"
            minSdkVersion 11
            targetSdkVersion 23 // <- and maybe here
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            ....
        }
    }
    

    Of course you will need to download the newest Android SDK and build tools (and whatever else you need) from the SDK Manager.

    0 讨论(0)
提交回复
热议问题