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

Commit e63709a

Browse files
committed
Update to RN 0.65
1 parent 24d828a commit e63709a

File tree

12 files changed

+2060
-2036
lines changed

12 files changed

+2060
-2036
lines changed

example/android/app/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,6 @@ android {
126126

127127
compileSdkVersion rootProject.ext.compileSdkVersion
128128

129-
compileOptions {
130-
sourceCompatibility JavaVersion.VERSION_1_8
131-
targetCompatibility JavaVersion.VERSION_1_8
132-
}
133-
134129
defaultConfig {
135130
applicationId 'com.example'
136131
minSdkVersion rootProject.ext.minSdkVersion

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
repositories {
1313
google()
14-
jcenter()
14+
mavenCentral()
1515
}
1616
dependencies {
1717
classpath 'com.android.tools.build:gradle:4.2.2'
@@ -23,6 +23,7 @@ buildscript {
2323

2424
allprojects {
2525
repositories {
26+
mavenCentral()
2627
mavenLocal()
2728
maven {
2829
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
@@ -34,7 +35,6 @@ allprojects {
3435
}
3536

3637
google()
37-
jcenter()
3838
maven { url 'https://www.jitpack.io' }
3939
}
4040
}

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.87.0
28+
FLIPPER_VERSION=0.102.0

example/ios/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require_relative '../node_modules/react-native/scripts/react_native_pods'
22
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
33

4-
platform :ios, '10.0'
4+
platform :ios, '11.0'
55

66
target 'example' do
77
config = use_native_modules!
@@ -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.87.0' })
19+
use_flipper!({ 'Flipper' => '0.102.0' })
2020

2121
post_install do |installer|
2222
react_native_post_install(installer)

0 commit comments

Comments
 (0)