Skip to content

Commit

Permalink
Merge pull request #242 from Microsoft/develop
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
achocron authored Feb 15, 2018
2 parents 6ad5c8d + 25621ed commit 9d41e16
Show file tree
Hide file tree
Showing 35 changed files with 318 additions and 220 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AppCenterReactNativeShared'
s.version = '1.2.0'
s.version = '1.3.0'
s.summary = 'React Native plugin for Visual Studio App Center'
s.license = { :type => 'MIT', :file => 'AppCenterReactNativeShared/LICENSE.md' }
s.homepage = 'https://github.com/Microsoft/AppCenter-SDK-React-Native'
Expand All @@ -14,5 +14,5 @@ Pod::Spec.new do |s|

s.vendored_frameworks = 'AppCenterReactNativeShared/AppCenterReactNativeShared.framework'

s.dependency 'AppCenter/Core', '1.3.0'
s.dependency 'AppCenter/Core', '1.4.0'
end
Binary file not shown.
6 changes: 3 additions & 3 deletions AppCenterReactNativeShared/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ allprojects {
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 23
versionName "1.2.0"
versionCode 25
versionName "1.3.0"
group groupId
version versionName
buildConfigField 'String', "SDK_NAME", "\"appcenter.react-native\""
Expand Down Expand Up @@ -110,7 +110,7 @@ allprojects {

dependencies {
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.microsoft.appcenter:appcenter:1.2.0'
compile 'com.microsoft.appcenter:appcenter:1.3.0'
}

artifacts {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
353594A020360A3B00066F33 /* AppCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3535949F20360A3B00066F33 /* AppCenter.framework */; };
5419C25A1D81FDA300DDF3A1 /* AppCenterReactNativeShared.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5419C2591D81FDA300DDF3A1 /* AppCenterReactNativeShared.h */; };
5419C25C1D81FDA300DDF3A1 /* AppCenterReactNativeShared.m in Sources */ = {isa = PBXBuildFile; fileRef = 5419C25B1D81FDA300DDF3A1 /* AppCenterReactNativeShared.m */; };
9CF027AA1FA2AD85008BDD9A /* AppCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CF027A91FA2AD85008BDD9A /* AppCenter.framework */; };
Expand All @@ -41,6 +42,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
3535949F20360A3B00066F33 /* AppCenter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppCenter.framework; path = "../../../../Downloads/AppCenter-SDK-Apple/iOS/AppCenter.framework"; sourceTree = "<group>"; };
5419C2561D81FDA300DDF3A1 /* libAppCenterReactNativeShared.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libAppCenterReactNativeShared.a; sourceTree = BUILT_PRODUCTS_DIR; };
5419C2591D81FDA300DDF3A1 /* AppCenterReactNativeShared.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppCenterReactNativeShared.h; sourceTree = "<group>"; };
5419C25B1D81FDA300DDF3A1 /* AppCenterReactNativeShared.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppCenterReactNativeShared.m; sourceTree = "<group>"; };
Expand All @@ -54,6 +56,7 @@
buildActionMask = 2147483647;
files = (
9CF027AA1FA2AD85008BDD9A /* AppCenter.framework in Frameworks */,
353594A020360A3B00066F33 /* AppCenter.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -63,6 +66,7 @@
5419C24D1D81FDA300DDF3A1 = {
isa = PBXGroup;
children = (
3535949F20360A3B00066F33 /* AppCenter.framework */,
5419C2581D81FDA300DDF3A1 /* AppCenterReactNativeShared */,
5419C2571D81FDA300DDF3A1 /* Products */,
9CF027A91FA2AD85008BDD9A /* AppCenter.framework */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ + (void) configureAppCenter
if (![MSAppCenter isConfigured]) {
MSWrapperSdk * wrapperSdk =
[[MSWrapperSdk alloc]
initWithWrapperSdkVersion:@"1.2.0"
initWithWrapperSdkVersion:@"1.3.0"
wrapperSdkName:@"appcenter.react-native"
wrapperRuntimeVersion:nil
liveUpdateReleaseLabel:nil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
import android.util.Log;

import com.facebook.react.ReactApplication;
import com.microsoft.appcenter.reactnative.push.AppCenterReactNativePushPackage;
import com.microsoft.appcenter.reactnative.crashes.AppCenterReactNativeCrashesPackage;
import com.microsoft.appcenter.reactnative.analytics.AppCenterReactNativeAnalyticsPackage;
import com.microsoft.appcenter.reactnative.appcenter.AppCenterReactNativePackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import com.imagepicker.ImagePickerPackage;
import com.microsoft.appcenter.AppCenter;
import com.microsoft.appcenter.push.Push;
import com.microsoft.appcenter.reactnative.analytics.AppCenterReactNativeAnalyticsPackage;
import com.microsoft.appcenter.reactnative.appcenter.AppCenterReactNativePackage;
import com.microsoft.appcenter.reactnative.crashes.AppCenterReactNativeCrashesPackage;
import com.microsoft.appcenter.reactnative.push.AppCenterReactNativePushPackage;
import com.rnfs.RNFSPackage;

import java.util.Arrays;
Expand All @@ -32,10 +32,10 @@ public boolean getUseDeveloperSupport() {
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNFSPackage(),
new ImagePickerPackage(),
new AppCenterReactNativePushPackage(MainApplication.this),
new AppCenterReactNativePackage(MainApplication.this),
new RNFSPackage(),
new ImagePickerPackage(),
new AppCenterReactNativeCrashesPackage(MainApplication.this, getResources().getString(R.string.appCenterCrashes_whenToSendCrashes)),
new AppCenterReactNativeAnalyticsPackage(MainApplication.this, getResources().getString(R.string.appCenterAnalytics_whenToEnableAnalytics))
);
Expand Down
6 changes: 3 additions & 3 deletions TestApp/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ target 'TestApp' do
# use_frameworks!

# Pods for TestApp
pod 'AppCenter/Crashes', '~> 1.3.0'
pod 'AppCenter/Analytics', '~> 1.3.0'
pod 'AppCenter/Push', '~> 1.3.0'
pod 'AppCenter/Crashes', '~> 1.4.0'
pod 'AppCenter/Analytics', '~> 1.4.0'
pod 'AppCenter/Push', '~> 1.4.0'

pod 'AppCenterReactNativeShared', :path => '../../AppCenterReactNativeShared/Products/'

Expand Down
24 changes: 12 additions & 12 deletions TestApp/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
PODS:
- AppCenter/Analytics (1.3.0):
- AppCenter/Analytics (1.4.0):
- AppCenter/Core
- AppCenter/Core (1.3.0)
- AppCenter/Crashes (1.3.0):
- AppCenter/Core (1.4.0)
- AppCenter/Crashes (1.4.0):
- AppCenter/Core
- AppCenter/Push (1.3.0):
- AppCenter/Push (1.4.0):
- AppCenter/Core
- AppCenterReactNativeShared (1.2.0):
- AppCenter/Core (= 1.3.0)
- AppCenterReactNativeShared (1.3.0):
- AppCenter/Core (= 1.4.0)

DEPENDENCIES:
- AppCenter/Analytics (~> 1.3.0)
- AppCenter/Crashes (~> 1.3.0)
- AppCenter/Push (~> 1.3.0)
- AppCenter/Analytics (~> 1.4.0)
- AppCenter/Crashes (~> 1.4.0)
- AppCenter/Push (~> 1.4.0)
- AppCenterReactNativeShared (from `../../AppCenterReactNativeShared/Products/`)

EXTERNAL SOURCES:
AppCenterReactNativeShared:
:path: ../../AppCenterReactNativeShared/Products/

SPEC CHECKSUMS:
AppCenter: 77679d75cbb6e5327cb849d2988b57d9cb864dcb
AppCenterReactNativeShared: 82e4cf33cbc22b6eb7b2a981caa8e883b26bc5d4
AppCenter: 2f5890b60944971b8c3767269a9d693205a91fef
AppCenterReactNativeShared: 784f42fbb8f12c9bc587527a650c48d8f001295f

PODFILE CHECKSUM: 45333d7c0d9b97cbc56ee2266190870c9212344c
PODFILE CHECKSUM: 3ef44aac093b9ff449e142e5a71099e79d3ec127

COCOAPODS: 1.3.1
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.

Binary file not shown.
Binary file not shown.

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

Binary file not shown.
Binary file not shown.

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

24 changes: 12 additions & 12 deletions TestApp/ios/Pods/Manifest.lock

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

Loading

0 comments on commit 9d41e16

Please sign in to comment.