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

Commit

Permalink
Update to React Native 0.65.1
Browse files Browse the repository at this point in the history
  • Loading branch information
demchenkoalex committed Sep 5, 2021
1 parent 917f7e7 commit ea3bf0d
Show file tree
Hide file tree
Showing 12 changed files with 1,487 additions and 1,495 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Get an absolute path to a file retrieved by Android's `Intent.ACTION_GET_CONTENT
yarn add @flyerhq/react-native-android-uri-path
```

⚠️ Use version `2.1.3` for React Native below `0.65.0` and latest for `0.65.0` and above

## Usage

```ts
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.21')}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.30')}"
}
}

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

android {
compileSdkVersion safeExtGet('compileSdkVersion', 30)
buildToolsVersion safeExtGet('buildToolsVersion', '30.0.3')
buildToolsVersion safeExtGet('buildToolsVersion', '30.0.2')

defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 16)
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ dependencies {
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
from configurations.implementation
into 'libs'
}

Expand Down
4 changes: 2 additions & 2 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

buildscript {
ext {
buildToolsVersion = '30.0.3'
buildToolsVersion = '30.0.2'
minSdkVersion = 21
compileSdkVersion = 30
targetSdkVersion = 30
kotlinVersion = '1.5.21'
kotlinVersion = '1.5.30'
ndkVersion = '23.0.7599858'
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion example/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ android.useAndroidX=true
android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.102.0
FLIPPER_VERSION=0.105.0
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ target 'example' do
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!({ 'Flipper' => '0.102.0' })
use_flipper!({ 'Flipper' => '0.105.0' })

post_install do |installer|
react_native_post_install(installer)
Expand Down
Loading

0 comments on commit ea3bf0d

Please sign in to comment.