将gradle设置为Android O(API 26)

Exp*_*ove 5 android android-gradle-plugin android-8.0-oreo

Android Studio已自动将以下组件更新为API 26:

  • ROM-SDK至API 26
  • Android SDK生成工具26
  • Android模拟器26.0.3
  • Android SDK平台-工具26.0.0
  • Android SDK工具26.0.2

我的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'
}
Run Code Online (Sandbox Code Playgroud)

我有两个问题(请参阅Gradle中的注释行):

我怎么知道这些库的最新版本(我只是简单地抛出随机数,然后尝试增加它们,直到找到最新版本)。

在排除的组中有“ com.android.support”,如果我删除它,我需要指定那些库吗?我看到很多人都以这种方式包括“ com.android.support”库,所以我想这样做是有原因的。

我在developer.android.com中搜索,最新版本为24.2.0(非常老的版本我一直使用25.3.1)。

oli*_*ejp 4

如果您确实想使用 26 版本,您可以在依赖项末尾使用 + 字符。

compile 'com.android.support:appcompat-v7:26+'
Run Code Online (Sandbox Code Playgroud)

这样,grade 就会采用以 26 开头的最新版本.??.? 你的依赖。但是您会收到来自 Android Studio 的警告,因为在两个不同版本之间,行为最终可能会发生变化,然后产生随机效果。

要了解最新版本,请查看此处:https ://developer.android.com/topic/libraries/support-library/revisions.html

最后,如果您包含“com.android.support”,您将包含整个库。而且您当然不需要包含所有内容。如果您只使用回收器视图,只需添加:

compile 'com.android.support:recyclerview-v7:26.0.0-beta2'
Run Code Online (Sandbox Code Playgroud)