Skip to content
This repository was archived by the owner on May 7, 2022. It is now read-only.

Commit ea3bf0d

Browse files
committed
Update to React Native 0.65.1
1 parent 917f7e7 commit ea3bf0d

File tree

12 files changed

+1487
-1495
lines changed

12 files changed

+1487
-1495
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Get an absolute path to a file retrieved by Android's `Intent.ACTION_GET_CONTENT
1212
yarn add @flyerhq/react-native-android-uri-path
1313
```
1414

15+
⚠️ Use version `2.1.3` for React Native below `0.65.0` and latest for `0.65.0` and above
16+
1517
## Usage
1618

1719
```ts

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010

1111
dependencies {
1212
classpath 'com.android.tools.build:gradle:4.2.2'
13-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.21')}"
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.30')}"
1414
}
1515
}
1616

@@ -23,7 +23,7 @@ apply plugin: 'kotlin-android'
2323

2424
android {
2525
compileSdkVersion safeExtGet('compileSdkVersion', 30)
26-
buildToolsVersion safeExtGet('buildToolsVersion', '30.0.3')
26+
buildToolsVersion safeExtGet('buildToolsVersion', '30.0.2')
2727

2828
defaultConfig {
2929
minSdkVersion safeExtGet('minSdkVersion', 16)

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ dependencies {
212212
// Run this once to be able to run the application with BUCK
213213
// puts all compile dependencies into folder libs for BUCK to use
214214
task copyDownloadableDepsToLibs(type: Copy) {
215-
from configurations.compile
215+
from configurations.implementation
216216
into 'libs'
217217
}
218218

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
buildscript {
44
ext {
5-
buildToolsVersion = '30.0.3'
5+
buildToolsVersion = '30.0.2'
66
minSdkVersion = 21
77
compileSdkVersion = 30
88
targetSdkVersion = 30
9-
kotlinVersion = '1.5.21'
9+
kotlinVersion = '1.5.30'
1010
ndkVersion = '23.0.7599858'
1111
}
1212
repositories {

example/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ android.useAndroidX=true
2525
android.enableJetifier=true
2626

2727
# Version of flipper SDK to use with React Native
28-
FLIPPER_VERSION=0.102.0
28+
FLIPPER_VERSION=0.105.0

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ target 'example' do
1616
#
1717
# Note that if you have use_frameworks! enabled, Flipper will not work and
1818
# you should disable the next line.
19-
use_flipper!({ 'Flipper' => '0.102.0' })
19+
use_flipper!({ 'Flipper' => '0.105.0' })
2020

2121
post_install do |installer|
2222
react_native_post_install(installer)

0 commit comments

Comments
 (0)