2015-10-21 24 views
0

SDK Manager哪個值更新,以在Android Studio中

Part 2

這是我的SDK經理目前看起來like.In該文件的build.gradle我會有什麼變化,使使我達日期。 我目前的compilesdkversion是23,buildsdkversion是23.0.1。 所有com.android.support。*庫都在23.1.0。

+0

你的build.gradle文件剛剛更新。 SDK工具未在buidl.gradle中定義 –

回答

1

您的build.gradle文件已更新。

我目前的compilesdkversion是23,buildsdkversion是23.0.1。所有的com.android.support。*庫都在23.1.0。

compilesdkversion 23 -->ANDROID API 23 

buildsdkversion 23.0.1 --> Android SDK Build-Tools 

com.android.support.xxx 23.1.0 -->Android Support Repositories/Android Support Library 

Android SDK工具是不是在你的build.gradle
SDK工具是Android SDK的一個下載組件。它包括用於Android SDK的全套開發和調試工具。

更多info here:

SDK Tools, Revision 24.4.1 (October 2015) 

    Dependencies: 
    Android SDK Platform-tools revision 23 or later. 

    General Notes: 
    Fixed a problem where the emulator title bar was hidden off screen. (Issue 178344) 
    Enabled the emulator to resize the user data partition by including e2fsprogs binaries. (Issue 189030) 
    Fixed a regression on the 32-bit Windows OS where the emulator fails to boot Android 6.0 (API level 23) through Android 5.0 (API level 21) system images. (Issue 188326) 

    SDK Tools, Revision 24.4.0 (October 2015) 

    Dependencies: 
    Android SDK Platform-tools revision 23 or later. 

    General Notes: 
    Updated the emulator so it can display an upgrade notification when a new version is available. 
    Added the ability for the emulator to send basic crash reports. You must opt-in through Android Studio preferences to enable crash report transmission. 
1

無。 SDK或構建工具都不更新,只有SDK工具。

+0

因此,如果我要更新到24.4.1,我將不必在我的gradle文件中進行任何更改? –

+0

這是正確的。 – phxhawke