Skip to content

Commit

Permalink
Merge pull request #576 from microsoft/release/2.0.0
Browse files Browse the repository at this point in the history
Update demo app for release
  • Loading branch information
guperrot authored May 8, 2019
2 parents f479487 + a2a391b commit ba8ab5c
Show file tree
Hide file tree
Showing 68 changed files with 189 additions and 197 deletions.
1 change: 1 addition & 0 deletions DemoApp/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ android {
}

dependencies {
implementation project(':react-native-gesture-handler')
implementation project(':appcenter-push')
implementation project(':appcenter-crashes')
implementation project(':appcenter-analytics')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import android.util.Log;

import com.facebook.react.ReactApplication;
import com.swmansion.gesturehandler.react.RNGestureHandlerPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
Expand Down Expand Up @@ -34,6 +35,7 @@ public boolean getUseDeveloperSupport() {
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new RNGestureHandlerPackage(),
new ImagePickerPackage(),
new RNFSPackage(),
new DemoAppNativePackage(MainApplication.this),
Expand Down
2 changes: 2 additions & 0 deletions DemoApp/android/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
rootProject.name = 'DemoApp'
include ':react-native-gesture-handler'
project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')
include ':react-native-image-picker'
project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android')
include ':react-native-fs'
Expand Down
12 changes: 8 additions & 4 deletions DemoApp/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ target 'DemoApp' do
# use_frameworks!

# Pods for DemoApp
pod 'AppCenter/Push', '~> 1.14.0'
pod 'AppCenter/Crashes', '~> 1.14.0'
pod 'AppCenter/Analytics', '~> 1.14.0'
pod 'AppCenterReactNativeShared', '~> 1.13.0'
pod 'AppCenter/Push', '~> 2.0.1'
pod 'AppCenter/Crashes', '~> 2.0.1'
pod 'AppCenter/Analytics', '~> 2.0.1'
pod 'AppCenterReactNativeShared', '~> 2.0.0'

platform :ios, '9.0'

# This commented line is to avoid react-native link adding an optional dependency that is way too heavy.
# pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'

end
26 changes: 13 additions & 13 deletions DemoApp/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
PODS:
- AppCenter/Analytics (1.14.0):
- AppCenter/Analytics (2.0.1):
- AppCenter/Core
- AppCenter/Core (1.14.0)
- AppCenter/Crashes (1.14.0):
- AppCenter/Core (2.0.1)
- AppCenter/Crashes (2.0.1):
- AppCenter/Core
- AppCenter/Push (1.14.0):
- AppCenter/Push (2.0.1):
- AppCenter/Core
- AppCenterReactNativeShared (1.13.0):
- AppCenter/Core (= 1.14.0)
- AppCenterReactNativeShared (2.0.0):
- AppCenter/Core (= 2.0.1)

DEPENDENCIES:
- AppCenter/Analytics (~> 1.14.0)
- AppCenter/Crashes (~> 1.14.0)
- AppCenter/Push (~> 1.14.0)
- AppCenterReactNativeShared (~> 1.13.0)
- AppCenter/Analytics (~> 2.0.1)
- AppCenter/Crashes (~> 2.0.1)
- AppCenter/Push (~> 2.0.1)
- AppCenterReactNativeShared (~> 2.0.0)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
Expand All @@ -22,9 +22,9 @@ SPEC REPOS:
- AppCenterReactNativeShared

SPEC CHECKSUMS:
AppCenter: 02c5efe08d3bbab5421ae41d5f7aa7238906b817
AppCenterReactNativeShared: 9be2f2612afc96cbe62e2f03d35815f4c7128b37
AppCenter: 6a5ff2fd007b53431259fdd74f91eb3d0dfea3d1
AppCenterReactNativeShared: cc2a3e309f37bd8d2148a4cc5448200f276b6f43

PODFILE CHECKSUM: 239bbc586b21e46d59909c22e677a84af328e9b3
PODFILE CHECKSUM: 9d0f173542335cd0465000656e211aa1fcbb0245

COCOAPODS: 1.5.3
Binary file not shown.

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 ba8ab5c

Please sign in to comment.