0

SDKマネージャー

パート2

これは現在、私の sdk マネージャーがどのように見えるかです。build.gradle ファイルでは、最新の状態にするためにどのような変更を加える必要がありますか。現在の compilesdkversion は 23 で、buildsdkversion は 23.0.1 です。すべての com.android.support.* ライブラリは 23.1.0 にあります。

4

2 に答える 2

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 ツールは SDK にありませんツールは、build.gradle
Android SDK のダウンロード可能なコンポーネントです。これには、Android SDK 用の開発ツールとデバッグ ツールの完全なセットが含まれています。

詳細はこちら:

 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.
于 2015-10-21T06:55:50.050 に答える