Skip to content

Commit f158041

Browse files
author
Gabriel Peal
committed
Update Android deps
1 parent 9ec5f1f commit f158041

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.0'
8+
classpath 'com.android.tools.build:gradle:2.3.3'
99
}
1010
}
1111

1212
allprojects {
1313
repositories {
1414
mavenLocal()
1515
jcenter()
16+
maven {
17+
url 'https://maven.google.com'
18+
}
1619
maven {
1720
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
1821
url "$rootDir/node_modules/react-native/android"

example/android/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ def enableSeparateBuildPerCPUArchitecture = false
9797
def enableProguardInReleaseBuilds = false
9898

9999
android {
100-
compileSdkVersion 25
101-
buildToolsVersion "25.0.2"
100+
compileSdkVersion 26
101+
buildToolsVersion "26.0.1"
102102

103103
defaultConfig {
104-
applicationId "com.example"
104+
applicationId "com.airbnb.android"
105105
minSdkVersion 16
106-
targetSdkVersion 25
106+
targetSdkVersion 26
107107
versionCode 1
108108
versionName "1.0"
109109
ndk {
@@ -141,8 +141,8 @@ android {
141141

142142
dependencies {
143143
compile fileTree(dir: "libs", include: ["*.jar"])
144-
compile 'com.android.support:appcompat-v7:25.1.1'
145-
compile 'com.android.support:support-annotations:25.1.1'
144+
compile 'com.android.support:appcompat-v7:26.1.0'
145+
compile 'com.android.support:support-annotations:26.1.0'
146146
compile "com.facebook.react:react-native:+" // From node_modules
147147
compile project(':lottie-react-native-lib')
148148

lib/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.library'
22
apply from: 'gradle-maven-push.gradle'
33

44
android {
5-
compileSdkVersion 25
6-
buildToolsVersion "25.0.2"
5+
compileSdkVersion 26
6+
buildToolsVersion "26.0.1"
77
publishNonDefault true
88

99
defaultConfig {
1010
minSdkVersion 16
11-
targetSdkVersion 25
11+
targetSdkVersion 26
1212
}
1313

1414
lintOptions {

0 commit comments

Comments
 (0)