Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

Commit

Permalink
0.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
birkir committed Aug 28, 2019
1 parent b2e69f7 commit 27bfedf
Show file tree
Hide file tree
Showing 6 changed files with 146 additions and 198 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
xcshareddata
ios/Pods
ios/Podfile.lock

Expand Down Expand Up @@ -49,6 +49,7 @@ yarn-error.log
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
*/fastlane/report.xml
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ dependencies {
implementation project(':react-native-code-push')

if (enableHermes) {
def hermesPath = "../../node_modules/hermesvm/android/";
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.ueno.reactnativestarter;

import android.content.Context;
import android.app.Application;
import android.util.Log;
import java.util.Arrays;
import java.util.List;
import java.lang.reflect.InvocationTargetException;

// React Native
import com.facebook.react.ReactInstanceManager;
Expand Down
9 changes: 8 additions & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ target 'react-native-starter' do
pod 'Firebase/Core', '~> 6.3.0'

# ReactNative
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/React'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-DevSupport', :path => '../node_modules/react-native/React'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
Expand All @@ -25,6 +30,8 @@ target 'react-native-starter' do
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"mobx-state-tree": "3.14.1",
"polished": "3.4.1",
"react": "^16.9.0",
"react-native": "0.60.5",
"react-native": "0.61.0-rc.0",
"react-native-code-push": "5.6.1",
"react-native-config": "0.11.7",
"react-native-firebase": "5.5.6",
Expand Down
Loading

0 comments on commit 27bfedf

Please sign in to comment.