根据compileSDKversion

时间:2018-07-26 01:39:00

标签: android sdk android-support-library

我的compileSDKversion是26,所以我想在应用程序build.gradel中添加一些支持库,例如implementation 'com.android.support:card-v7:26.x.x'。 如何为当前的compileSDK version选择正确的版本?

我只是做了“尝试并失败”。我的意思是,我输入x = 1然后运行"sync project with gradle",然后等待IDE通知它运行正常。但是我不知道我应该使用什么完全合适的版本。我做了搜索,发现有人基于compileSDKversion告诉支持库的版本,应该使用最后一个'compileSDKVersion',但这不能解决我的问题。

1 个答案:

答案 0 :(得分:1)

https://developer.android.com/topic/libraries/support-library/setup可以帮助您设置support librairy

我认为在您的情况下,cardcardview。因为尝试同步时找不到card

这是我对sdk 26建议的一个示例

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        ...
        targetSdkVersion 26
        ...
    }
    ...
}

dependencies {
    ...
    implementation 'com.android.support:cardview-v7:26.1.0'
    ...
}