Android Studio已自动将以下组件更新为API 26:
我的gradle 2.3.3:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.mycompany.myapplication"
minSdkVersion 15
targetSdkVersion 26
versionCode 4
versionName "0.0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
/////////If I change it to 26.0.0 it gives errors.///////////
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:support-vector-drawable:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
/////////////////////////////////////////////////////////////
testCompile 'junit:junit:4.12'
}
我有两个问题(请参阅Gradle中的注释行):
我如何知道这些库的最新版本(我只是抛出随机数并尝试使用它们,直到找到最新版本)。
在排除的群组中有“com.android.support'”,如果删除,我是否需要指定这些库?我看到很多人包括' com.android.support'这样的图书馆,所以我猜这样做是有原因的。
我在developer.android.com上搜索过,最新版本是24.2.0(很老了,我一直在使用25.3.1)。
答案 0 :(得分:4)
如果您真的想使用26版本,可以使用依赖项末尾的+字符。
compile 'com.android.support:appcompat-v7:26+'
这样,成绩将采用从26开始的最新版本。?。?你的依赖。但是你会收到来自Android Studio的警告,因为在两个不同版本之间,行为最终可能会改变,然后产生随机效果。
要了解最新版本,请点击此处:https://developer.android.com/topic/libraries/support-library/revisions.html
要完成,如果您包含' com.android.support',您将包含整个库。你肯定不需要包括所有的东西。如果您只使用Recycler视图,请添加:
compile 'com.android.support:recyclerview-v7:26.0.0-beta2'
答案 1 :(得分:0)
检查https://developer.android.com/topic/libraries/support-library/revisions.html并在页脚处将语言设置为英语以检查支持库的最新版本。目前是25.4.0(稳定)或26.0.0(beta 2)
答案 2 :(得分:0)
试试这个:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
答案 3 :(得分:0)
感谢您报告您的问题。更新版本6.0.0包含对Java 8功能的支持,因此为了运行它(或任何测试版),您需要升级项目以包含Java 8支持,方法是将其添加到您的应用程序的gradle文件:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}