Skip to content

Commit 10f974a

Browse files
dulmandakhfacebook-github-bot
authored andcommitted
android compileSdkVersion 26, use buildToolsVersion 26.0.3
Summary: Starting August 2018, Google Play will require targetSdkVersion 26 for new applications, and November 2018 for application updates. This PR will use Android build tools 26.0.3 and compilerSdk 26, then support library version 26.0.2 to make targeting 26 easier in the future. I think this PR will help to people compile and test their applications, thus make transition easier (smoother). Also we'll have opportunity and time to migrate code to target 26. facebook/react-native#18095 React Native on android must work as usual Closes facebook/react-native#19257 Differential Revision: D8010354 Pulled By: mdvacca fbshipit-source-id: 63ba03585e918b38c2a2adb5d2f2e85d7ce46fae
1 parent d3f1ce1 commit 10f974a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ def enableSeparateBuildPerCPUArchitecture = false
8484
def enableProguardInReleaseBuilds = false
8585

8686
android {
87-
compileSdkVersion 23
88-
buildToolsVersion "23.0.1"
87+
compileSdkVersion 26
88+
buildToolsVersion "26.0.3"
8989

9090
defaultConfig {
9191
applicationId "com.facebook.react.uiapp"
@@ -137,7 +137,7 @@ android {
137137

138138
dependencies {
139139
compile fileTree(dir: 'libs', include: ['*.jar'])
140-
compile 'com.android.support:appcompat-v7:23.0.1'
140+
compile 'com.android.support:appcompat-v7:26.0.2'
141141

142142
// Build React Native from source
143143
compile project(':ReactAndroid')

0 commit comments

Comments
 (0)