Skip to content
This repository has been archived by the owner on Feb 22, 2019. It is now read-only.

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
Requires to patch tests/setup.js, see facebook/react-native#15810
  • Loading branch information
Francois Best committed Sep 18, 2017
1 parent 5184250 commit c52e3e5
Show file tree
Hide file tree
Showing 10 changed files with 589 additions and 349 deletions.
Binary file added android/app/src/main/assets/fonts/Feather.ttf
Binary file not shown.
Binary file modified android/app/src/main/assets/fonts/Octicons.ttf
Binary file not shown.
22 changes: 11 additions & 11 deletions android/app/src/main/java/com/stravels/MainApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import com.microsoft.azure.mobile.react.mobilecenter.RNMobileCenterPackage;
import com.mapbox.reactnativemapboxgl.ReactNativeMapboxGLPackage;
import com.lugg.ReactNativeConfig.ReactNativeConfigPackage;
import com.i18n.reactnativei18n.ReactNativeI18n;
import com.AlexanderZaytsev.RNI18n.RNI18nPackage;
import com.oblador.vectoricons.VectorIconsPackage;
import com.learnium.RNDeviceInfo.RNDeviceInfo;
import com.facebook.react.ReactNativeHost;
Expand Down Expand Up @@ -39,16 +39,16 @@ public boolean getUseDeveloperSupport() {
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new CodePush(BuildConfig.CODEPUSH_KEY, getApplicationContext(), BuildConfig.DEBUG),
new RNPushPackage(MainApplication.this),
new RNCrashesPackage(MainApplication.this, getResources().getString(R.string.mobileCenterCrashes_whenToSendCrashes)),
new RNAnalyticsPackage(MainApplication.this, getResources().getString(R.string.mobileCenterAnalytics_whenToEnableAnalytics)),
new RNMobileCenterPackage(MainApplication.this),
new ReactNativeMapboxGLPackage(),
new ReactNativeConfigPackage(),
new ReactNativeI18n(),
new VectorIconsPackage(),
new RNDeviceInfo()
new CodePush(BuildConfig.CODEPUSH_KEY, getApplicationContext(), BuildConfig.DEBUG),
new RNPushPackage(MainApplication.this),
new RNCrashesPackage(MainApplication.this, getResources().getString(R.string.mobileCenterCrashes_whenToSendCrashes)),
new RNAnalyticsPackage(MainApplication.this, getResources().getString(R.string.mobileCenterAnalytics_whenToEnableAnalytics)),
new RNMobileCenterPackage(MainApplication.this),
new ReactNativeMapboxGLPackage(),
new ReactNativeConfigPackage(),
new RNI18nPackage(),
new VectorIconsPackage(),
new RNDeviceInfo()
);
}
};
Expand Down
156 changes: 113 additions & 43 deletions ios/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c52e3e5

Please sign in to comment.