Android Studio 已自动将以下组件更新为 API 26:
- ROM - SDK 到 API 26
- Android SDK 构建工具 26
- 安卓模拟器 26.0.3
- Android SDK 平台-工具 26.0.0
- 安卓 SDK 工具 26.0.2
我的毕业 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)。