Skip to content

Commit 12eb1a0

Browse files
committed
Bump dependencies versions
1 parent eb667cc commit 12eb1a0

File tree

10 files changed

+2054
-2185
lines changed

10 files changed

+2054
-2185
lines changed

android/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ buildscript {
88
// module dependency in an application project.
99
if (project == rootProject) {
1010
repositories {
11-
mavenCentral()
1211
google()
12+
mavenCentral()
1313
}
1414
dependencies {
15-
classpath 'com.android.tools.build:gradle:3.5.3'
15+
classpath("com.android.tools.build:gradle:4.2.2")
1616
}
1717
}
1818
}
1919

20-
apply plugin: 'com.android.library'
20+
apply plugin: "com.android.library"
2121

2222
android {
23-
compileSdkVersion safeExtGet('compileSdkVersion', 29)
24-
buildToolsVersion safeExtGet('buildToolsVersion', '29.0.3')
23+
compileSdkVersion safeExtGet("compileSdkVersion", 30)
24+
buildToolsVersion safeExtGet("buildToolsVersion", "30.0.2")
2525
defaultConfig {
26-
minSdkVersion safeExtGet('minSdkVersion', 16)
27-
targetSdkVersion safeExtGet('targetSdkVersion', 29)
26+
minSdkVersion safeExtGet("minSdkVersion", 21)
27+
targetSdkVersion safeExtGet("targetSdkVersion", 30)
2828
}
2929
lintOptions {
3030
abortOnError false
@@ -47,5 +47,5 @@ repositories {
4747

4848
dependencies {
4949
//noinspection GradleDynamicVersion
50-
implementation 'com.facebook.react:react-native:+' // From node_modules
50+
implementation "com.facebook.react:react-native:+" // From node_modules
5151
}

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ android {
198198
dependencies {
199199
implementation fileTree(dir: "libs", include: ["*.jar"])
200200
//noinspection GradleDynamicVersion
201-
implementation "com.facebook.react:react-native:+" // From node_modules
201+
implementation "com.facebook.react:react-native:+" // From node_modules
202202

203-
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
203+
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
204204

205205
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
206206
exclude group:'com.facebook.fbjni'

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ buildscript {
99
ndkVersion = "21.4.7075529"
1010
}
1111
repositories {
12-
mavenCentral()
1312
google()
13+
mavenCentral()
1414
}
1515
dependencies {
1616
classpath("com.android.tools.build:gradle:4.2.2")
@@ -22,8 +22,8 @@ buildscript {
2222

2323
allprojects {
2424
repositories {
25-
mavenLocal()
2625
mavenCentral()
26+
mavenLocal()
2727
maven {
2828
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
2929
url("$rootDir/../node_modules/react-native/android")

0 commit comments

Comments
 (0)