Skip to content

Commit 580b967

Browse files
authored
Version 0.1.3 (#147)
1 parent 3486fdb commit 580b967

File tree

10 files changed

+63
-12
lines changed

10 files changed

+63
-12
lines changed

Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class WrapperSdk
1313
private static bool _hasAttemptedToGetRuntimeVersion;
1414

1515
public const string Name = "appcenter.unity";
16-
public const string WrapperSdkVersion = "0.1.2";
16+
public const string WrapperSdkVersion = "0.1.3";
1717

1818
internal static string WrapperRuntimeVersion
1919
{

Assets/AppCenter/Plugins/iOS/Analytics/PropertyConfigurator.mm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
}
3232

3333
extern "C" void appcenter_unity_property_configurator_collect_device_id(MSPropertyConfigurator *configurator) {
34-
// [configurator collectDeviceId];
35-
// Will be uncommented after the release.
34+
[configurator collectDeviceId];
3635
}
3736

3837
extern "C" void appcenter_unity_property_configurator_set_event_property(MSPropertyConfigurator *configurator, char* key, char* value) {

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# App Center SDK for Unity Change Log
2+
3+
## Release 0.1.3
4+
5+
App Center SDK for Unity now uses the latest native SDKs:
6+
* App Center SDK for Android version 1.9.0
7+
* App Center SDK for iOS version 1.10.0
8+
* App Center SDK for .NET version 1.10.0
9+
10+
**iOS**
11+
* **[Fix]** Add missing network request error logging.
12+
13+
___
14+
15+
## Release 0.1.2
16+
17+
* **[Feature]** Added support for events `Crashes.SendingErrorReport`, `Crashes.SentErrorReport` and `Crashes.FailedToSendErrorReport` on iOS
18+
19+
___
20+
21+
## Release 0.1.1
22+
23+
* **[Feature]** Allow to store the SDK in directories other than "Assets/AppCenter" using the property `AppCenterContext.AppCenterPath`
24+
25+
___
26+
27+
## Release 0.1.0
28+
29+
* **[Fix]** Fixed Unity logs parsing that can sometimes break unhandled exceptions reporting
30+
* **[Fix]** Fixed missing SDK logs on UWP platform
31+
* **[Feature]** Preparation work for a future change in transmission protocol and endpoint for Analytics data. There is no impact on your current workflow when using App Center.
32+
33+
___
34+
35+
## Release 0.0.2
36+
37+
Removed some internal classes.
38+
There is no impact on your current workflow when using App Center Unity SDK.
39+
40+
___
41+
42+
## Release 0.0.1
43+
44+
Initial release

RELEASE.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
* **[Feature]** Added support for events `Crashes.SendingErrorReport`, `Crashes.SentErrorReport` and `Crashes.FailedToSendErrorReport` on iOS
1+
# Release 0.1.3
2+
3+
App Center SDK for Unity now uses the latest native SDKs:
4+
* App Center SDK for Android version 1.9.0
5+
* App Center SDK for iOS version 1.10.0
6+
* App Center SDK for .NET version 1.10.0
7+
8+
**iOS**
9+
* **[Fix]** Add missing network request error logging.

UnityPackageSpecs/AppCenter.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenter" version="0.1.2">
2+
<package name="AppCenter" version="0.1.3">
33
<include>
44
<!-- Editor related files -->
55
<file path="Assets/AppCenter/Editor" />

UnityPackageSpecs/AppCenterAnalytics.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterAnalytics" version="0.1.2" needsCore="true">
2+
<package name="AppCenterAnalytics" version="0.1.3" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />

UnityPackageSpecs/AppCenterCrashes.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterCrashes" version="0.1.2" needsCore="true">
2+
<package name="AppCenterCrashes" version="0.1.3" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />

UnityPackageSpecs/AppCenterDistribute.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterDistribute" version="0.1.2" needsCore="true">
2+
<package name="AppCenterDistribute" version="0.1.3" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />

UnityPackageSpecs/AppCenterPush.unitypackagespec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package name="AppCenterPush" version="0.1.2" needsCore="true">
2+
<package name="AppCenterPush" version="0.1.3" needsCore="true">
33
<include>
44
<!-- Shared files -->
55
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />

build.cake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ using System.Runtime.Versioning;
1212
using NuGet;
1313

1414
// Native SDK versions
15-
var AndroidSdkVersion = "1.8.0";
16-
var IosSdkVersion = "1.9.0";
17-
var UwpSdkVersion = "1.9.0";
15+
var AndroidSdkVersion = "1.9.0";
16+
var IosSdkVersion = "1.10.0";
17+
var UwpSdkVersion = "1.10.0";
1818

1919
// URLs for downloading binaries.
2020
/*

0 commit comments

Comments
 (0)