mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
--- a/build/android/pylib/constants/__init__.py
|
|
+++ b/build/android/pylib/constants/__init__.py
|
|
@@ -184,7 +184,7 @@ class ANDROID_SDK_VERSION_CODES(object):
|
|
LOLLIPOP_MR1 = 22
|
|
|
|
ANDROID_SDK_VERSION = ANDROID_SDK_VERSION_CODES.LOLLIPOP_MR1
|
|
-ANDROID_SDK_BUILD_TOOLS_VERSION = '22.0.0'
|
|
+ANDROID_SDK_BUILD_TOOLS_VERSION = '22.0.1'
|
|
ANDROID_SDK_ROOT = os.path.join(DIR_SOURCE_ROOT,
|
|
'third_party/android_tools/sdk')
|
|
ANDROID_SDK_TOOLS = os.path.join(ANDROID_SDK_ROOT,
|
|
--- a/build/common.gypi
|
|
+++ b/build/common.gypi
|
|
@@ -1682,7 +1682,7 @@
|
|
'android_host_arch%': '<!(uname -m)',
|
|
# Android API-level of the SDK used for compilation.
|
|
'android_sdk_version%': '22',
|
|
- 'android_sdk_build_tools_version%': '22.0.0',
|
|
+ 'android_sdk_build_tools_version%': '22.0.1',
|
|
'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
|
|
},
|
|
# Copy conditionally-set variables out one scope.
|
|
--- a/build/config/android/config.gni
|
|
+++ b/build/config/android/config.gni
|
|
@@ -17,7 +17,7 @@ if (is_android) {
|
|
if (!defined(default_android_sdk_root)) {
|
|
default_android_sdk_root = "//third_party/android_tools/sdk"
|
|
default_android_sdk_version = "22"
|
|
- default_android_sdk_build_tools_version = "22.0.0"
|
|
+ default_android_sdk_build_tools_version = "22.0.1"
|
|
}
|
|
|
|
if (!defined(google_play_services_library)) {
|