This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to react-native-firebase v5.0.0 and react-native 0.57.1 (#61)
* Upgrade to RN57.1 * Upgraded to latest Firebase dependencies * Upgraded to react-native-firebase 5.0.0 * Removed package-lock.json (for those ppl that use yarn) * Excluded lock files * Fixed android build * Updated index.js to default version * Minor updates to sync the project as close to a fresh RN generated project as possible * Disabled Invites pod on iOS because of misconfiguration exception * Bump Crashlytics pods * XCode 10 auto-added several AppIcon assets * Auto updates of XCode 10 + removed Invites files * Disabled new XCode 10 build system due to incompatibility issues which have not yet been resolved in RN57 * Added script to build Android APKs * Revert back to RN 0.57.1, as 0.57.2 contains a regression causing the bundler to now work out of the box facebook/react-native#21490 * [android] update firebase sdk versions * [android] update to gradle v4.6 * replace old logo * misc js changes
- Loading branch information
1 parent
c4840c0
commit c96fafc
Showing
38 changed files
with
659 additions
and
10,243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
{ | ||
"presets": [ | ||
"babel-preset-react-native-stage-0/decorator-support" | ||
], | ||
"env": { | ||
"development": { | ||
"plugins": [ | ||
"transform-react-jsx-source" | ||
] | ||
} | ||
} | ||
} | ||
"presets": ["module:metro-react-native-babel-preset"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,42 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
google() | ||
maven { | ||
url 'https://maven.fabric.io/public' | ||
} | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.1.3' | ||
classpath 'com.google.gms:google-services:4.0.1' | ||
classpath 'com.google.firebase:firebase-plugins:1.1.1' | ||
classpath 'io.fabric.tools:gradle:1.25.4' | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
ext { | ||
buildToolsVersion = "27.0.3" | ||
minSdkVersion = 16 | ||
compileSdkVersion = 27 | ||
targetSdkVersion = 26 | ||
supportLibVersion = "27.1.1" | ||
} | ||
repositories { | ||
jcenter() | ||
google() | ||
maven { | ||
url 'https://maven.fabric.io/public' | ||
} | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.2.0' | ||
classpath 'com.google.gms:google-services:4.0.1' | ||
classpath 'com.google.firebase:firebase-plugins:1.1.5' | ||
classpath 'io.fabric.tools:gradle:1.25.4' | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
mavenLocal() | ||
jcenter() | ||
google() | ||
maven { | ||
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm | ||
url "$rootDir/../node_modules/react-native/android" | ||
} | ||
repositories { | ||
mavenLocal() | ||
jcenter() | ||
maven { | ||
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm | ||
url "$rootDir/../node_modules/react-native/android" | ||
} | ||
google() | ||
} | ||
} | ||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '4.6' | ||
distributionUrl = distributionUrl.replace("bin", "all") | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#Thu Oct 11 16:57:08 BST 2018 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip |
Oops, something went wrong.