From 345b4ef7943cd66f3c384964a605424d91e4287d Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Fri, 22 Sep 2017 10:50:28 -0700 Subject: [PATCH 1/9] Use latest native SDKs --- build.cake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.cake b/build.cake index a66c535..62f3a64 100644 --- a/build.cake +++ b/build.cake @@ -2,11 +2,11 @@ #addin nuget:?package=Cake.Xamarin #addin nuget:?package=Cake.FileHelpers -var COMPONENT_VERSION = "4.1.5.0"; -var NUGET_VERSION = "4.1.5"; +var COMPONENT_VERSION = "5.0.0.0"; +var NUGET_VERSION = "5.0.0"; -var ANDROID_URL = "https://download.hockeyapp.net/sdk/android/HockeySDK-Android-4.1.5.zip"; -var IOS_URL = "https://download.hockeyapp.net/sdk/ios/HockeySDK-iOS-4.1.6.zip"; +var ANDROID_URL = "https://download.hockeyapp.net/sdk/android/HockeySDK-Android-5.0.1.zip"; +var IOS_URL = "https://download.hockeyapp.net/sdk/ios/HockeySDK-iOS-5.0.0.zip"; var SAMPLES = new [] { "./samples/HockeyAppSampleAndroid.sln", From 497d1d9fc09b08ae8755df936f54cca37630835d Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Fri, 22 Sep 2017 11:13:14 -0700 Subject: [PATCH 2/9] add workaround for -settings_skupverification=TRUE The workaround is described in: https://github.com/cake-build/cake/pull/1786 The makers of Cake.FileHelpers are working on it. https://github.com/cake-contrib/Cake.FileHelpers/issues/15 --- bootstrapper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrapper.sh b/bootstrapper.sh index c79b1e6..e7b6205 100755 --- a/bootstrapper.sh +++ b/bootstrapper.sh @@ -77,11 +77,11 @@ fi echo "EXTRA ARGS: $EXTRA_ARGS" # Start Cake if $SHOW_VERSION; then - mono $CAKE_EXE -version + mono $CAKE_EXE -version -settings_skipverification=true elif $DRYRUN; then - mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -dryrun $EXTRA_ARGS + mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -dryrun -settings_skipverification=true $EXTRA_ARGS else - mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET $EXTRA_ARGS + mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -settings_skipverification=true $EXTRA_ARGS fi exit $? \ No newline at end of file From e2d6dc5afd26881c7b15321f723ce2fa1eb182aa Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Fri, 22 Sep 2017 11:29:52 -0700 Subject: [PATCH 3/9] Fix android bindings --- source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs b/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs index f80694f..ea593b6 100644 --- a/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs +++ b/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs @@ -16,7 +16,6 @@ internal static class TraceWriter private static string _AndroidVersion = UNKNOWN_STATIC; private static string _PhoneManufacturer = UNKNOWN_STATIC; private static string _PhoneModel = UNKNOWN_STATIC; - private static string _FilesPath = "."; private static readonly int _Version = (int)Build.VERSION.SdkInt; private static bool _IncludeDeviceData = true; private const string UNKNOWN_DYNAMIC = "Unknown: call TraceWriter.Initialize(listener) after CrashManager.Initialize"; @@ -39,7 +38,6 @@ public static void Initialize() _AndroidVersion = Constants.AndroidVersion; _PhoneManufacturer = Constants.PhoneManufacturer; _PhoneModel = Constants.PhoneModel; - _FilesPath = Constants.FilesPath; } /// From e3890476b89b2c81b625d1d1f56c98093b775ac2 Mon Sep 17 00:00:00 2001 From: Murat Baysangurov Date: Sat, 23 Sep 2017 15:15:22 +0300 Subject: [PATCH 4/9] Some fixes according to changes in CrashManager in android 5.0.0 --- source/HockeySDK.Android/PlatformCrashManager.cs | 2 +- source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/source/HockeySDK.Android/PlatformCrashManager.cs b/source/HockeySDK.Android/PlatformCrashManager.cs index c3bde2f..88fc7fa 100644 --- a/source/HockeySDK.Android/PlatformCrashManager.cs +++ b/source/HockeySDK.Android/PlatformCrashManager.cs @@ -7,7 +7,7 @@ internal class PlatformCrashManager : IPlatformCrashManager { public PlatformCrashManager() {} - public bool DidCrashInLastSession { get { return HockeyAndroid.CrashManager.DidCrashInLastSession(); } } + public bool DidCrashInLastSession { get { return (Boolean) HockeyAndroid.CrashManager.DidCrashInLastSession().Get(); } } public bool TerminateOnUnobservedTaskException { diff --git a/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs b/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs index f80694f..1a29b27 100644 --- a/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs +++ b/source/HockeySDK.AndroidBindings/Additions/TraceWriter.cs @@ -39,7 +39,6 @@ public static void Initialize() _AndroidVersion = Constants.AndroidVersion; _PhoneManufacturer = Constants.PhoneManufacturer; _PhoneModel = Constants.PhoneModel; - _FilesPath = Constants.FilesPath; } /// From 9f6c97f657844e0edc7d5c90181499b19c5deed7 Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Tue, 26 Sep 2017 14:59:01 -0700 Subject: [PATCH 5/9] Bump versions in Readme and components docs --- README.md | 6 +++--- component/android/Details.md | 4 ++-- component/android/GettingStarted.md | 6 +++--- component/forms/Details.md | 6 +++--- component/forms/GettingStarted.md | 6 +++--- component/ios.crashonly/Details.md | 6 +++--- component/ios.crashonly/GettingStarted.md | 6 +++--- component/ios/Details.md | 6 +++--- component/ios/GettingStarted.md | 6 +++--- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 4f037a7..4456e9f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/android/Details.md b/component/android/Details.md index 4f037a7..aed9805 100644 --- a/component/android/Details.md +++ b/component/android/Details.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/android/GettingStarted.md b/component/android/GettingStarted.md index 4f037a7..4456e9f 100644 --- a/component/android/GettingStarted.md +++ b/component/android/GettingStarted.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/forms/Details.md b/component/forms/Details.md index 4f037a7..4456e9f 100644 --- a/component/forms/Details.md +++ b/component/forms/Details.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/forms/GettingStarted.md b/component/forms/GettingStarted.md index 4f037a7..4456e9f 100644 --- a/component/forms/GettingStarted.md +++ b/component/forms/GettingStarted.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/ios.crashonly/Details.md b/component/ios.crashonly/Details.md index 4f037a7..4456e9f 100644 --- a/component/ios.crashonly/Details.md +++ b/component/ios.crashonly/Details.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/ios.crashonly/GettingStarted.md b/component/ios.crashonly/GettingStarted.md index 4f037a7..d51f555 100644 --- a/component/ios.crashonly/GettingStarted.md +++ b/component/ios.crashonly/GettingStarted.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/ios/Details.md b/component/ios/Details.md index 4f037a7..4456e9f 100644 --- a/component/ios/Details.md +++ b/component/ios/Details.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing diff --git a/component/ios/GettingStarted.md b/component/ios/GettingStarted.md index 4f037a7..4456e9f 100644 --- a/component/ios/GettingStarted.md +++ b/component/ios/GettingStarted.md @@ -1,4 +1,4 @@ -## Version 4.1.5 +## Version 5.0.0 HockeySDK-Xamarin implements support for HockeyApp in your iOS and Android applications. @@ -6,7 +6,7 @@ The following features are currently supported: 1. **Collect crash reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well. -2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. On Android, this feature requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich). +2. **User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users. Monitor crash impacted users. Measure customer engagement through session count. You can also track custom events and view the aggregate results on the HockeyApp dashboard. 3. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. @@ -24,7 +24,7 @@ It is super easy to use HockeyApp in your Xamarin app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb) as a starting point for all of our documentation and check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin), [changelog](https://github.com/bitstadium/HockeySDK-Xamarin/releases), and our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-cross-platform/how-to-integrate-hockeyapp-with-xamarin#5-troubleshooting). -The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 4.1.6](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/4.1.6) and [HockeySDK-Android 4.1.5](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). +The Xamarin SDK wraps our native SDKs – [HockeySDK-iOS 5.0.0](https://github.com/bitstadium/HockeySDK-iOS/releases/tag/5.0.0) and [HockeySDK-Android 5.0.2](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.2). For more info on advanced, platform-specific behaviors, check out the documentation for [HockeySDK-iOS](https://support.hockeyapp.net/kb/client-integration-ios-mac-os-x-tvos/hockeyapp-for-ios) and [HockeySDK-Android](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk). ## 3. Contributing From 665fe69f0d56055550e1ae734b73b9cfd8b54702 Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Tue, 26 Sep 2017 15:43:20 -0700 Subject: [PATCH 6/9] Use HockeySDK-Android 5.0.2 --- build.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.cake b/build.cake index 62f3a64..76246f5 100644 --- a/build.cake +++ b/build.cake @@ -5,7 +5,7 @@ var COMPONENT_VERSION = "5.0.0.0"; var NUGET_VERSION = "5.0.0"; -var ANDROID_URL = "https://download.hockeyapp.net/sdk/android/HockeySDK-Android-5.0.1.zip"; +var ANDROID_URL = "https://download.hockeyapp.net/sdk/android/HockeySDK-Android-5.0.2.zip"; var IOS_URL = "https://download.hockeyapp.net/sdk/ios/HockeySDK-iOS-5.0.0.zip"; var SAMPLES = new [] { From 2187953635d6815e0deb82ba5eeafcaadc80394c Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Tue, 26 Sep 2017 16:04:47 -0700 Subject: [PATCH 7/9] Update Android Sample Project --- .../HockeyAppSampleAndroid.csproj | 43 +++++++++---------- .../Properties/AndroidManifest.xml | 2 +- .../HockeyAppSampleAndroid/packages.config | 22 +++++----- 3 files changed, 33 insertions(+), 34 deletions(-) diff --git a/samples/HockeyAppSampleAndroid/HockeyAppSampleAndroid.csproj b/samples/HockeyAppSampleAndroid/HockeyAppSampleAndroid.csproj index f4a5cd6..4ec4979 100644 --- a/samples/HockeyAppSampleAndroid/HockeyAppSampleAndroid.csproj +++ b/samples/HockeyAppSampleAndroid/HockeyAppSampleAndroid.csproj @@ -1,6 +1,6 @@ - + Debug AnyCPU @@ -47,34 +47,34 @@ - ..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll + ..\packages\Xamarin.Android.Support.Annotations.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll - ..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll + ..\packages\Xamarin.Android.Support.Compat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll - ..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll + ..\packages\Xamarin.Android.Support.Core.UI.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll - ..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll + ..\packages\Xamarin.Android.Support.Core.Utils.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll - ..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll + ..\packages\Xamarin.Android.Support.Media.Compat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll - ..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll + ..\packages\Xamarin.Android.Support.Fragment.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll - ..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll + ..\packages\Xamarin.Android.Support.v4.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll - ..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll + ..\packages\Xamarin.Android.Support.Vector.Drawable.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll - ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll + ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll - ..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll + ..\packages\Xamarin.Android.Support.v7.AppCompat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll @@ -104,15 +104,14 @@ HockeySDK.AndroidBindings - - - - - - - - - - - + + + + + + + + + + diff --git a/samples/HockeyAppSampleAndroid/Properties/AndroidManifest.xml b/samples/HockeyAppSampleAndroid/Properties/AndroidManifest.xml index 13da35b..fe3ba1a 100644 --- a/samples/HockeyAppSampleAndroid/Properties/AndroidManifest.xml +++ b/samples/HockeyAppSampleAndroid/Properties/AndroidManifest.xml @@ -1,6 +1,6 @@  - + diff --git a/samples/HockeyAppSampleAndroid/packages.config b/samples/HockeyAppSampleAndroid/packages.config index f11ec8b..9c48d20 100644 --- a/samples/HockeyAppSampleAndroid/packages.config +++ b/samples/HockeyAppSampleAndroid/packages.config @@ -1,14 +1,14 @@  - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file From ccc365cfbed15006284189b378c2a3011d4e6a05 Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Tue, 26 Sep 2017 16:10:50 -0700 Subject: [PATCH 8/9] Bump package verisons in forms sample --- .../Droid/HockeyAppSampleForms.Droid.csproj | 79 +++++++++---------- .../Droid/packages.config | 36 ++++----- .../HockeyAppSampleForms.csproj | 8 +- .../iOS/HockeyAppSampleForms.iOS.csproj | 10 +-- samples/HockeyAppSampleForms/iOS/Info.plist | 3 +- .../HockeyAppSampleForms/iOS/packages.config | 2 +- samples/HockeyAppSampleForms/packages.config | 2 +- 7 files changed, 69 insertions(+), 71 deletions(-) diff --git a/samples/HockeyAppSampleForms/Droid/HockeyAppSampleForms.Droid.csproj b/samples/HockeyAppSampleForms/Droid/HockeyAppSampleForms.Droid.csproj index a48afca..169f518 100644 --- a/samples/HockeyAppSampleForms/Droid/HockeyAppSampleForms.Droid.csproj +++ b/samples/HockeyAppSampleForms/Droid/HockeyAppSampleForms.Droid.csproj @@ -1,6 +1,6 @@ - + Debug AnyCPU @@ -44,67 +44,67 @@ - ..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll + ..\..\packages\Xamarin.Android.Support.Annotations.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll - ..\..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll + ..\..\packages\Xamarin.Android.Support.Compat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll - ..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll + ..\..\packages\Xamarin.Android.Support.Core.UI.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll - ..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll + ..\..\packages\Xamarin.Android.Support.Core.Utils.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll - ..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll + ..\..\packages\Xamarin.Android.Support.Media.Compat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll - ..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll + ..\..\packages\Xamarin.Android.Support.Fragment.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll - ..\..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll + ..\..\packages\Xamarin.Android.Support.Transition.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll - ..\..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll + ..\..\packages\Xamarin.Android.Support.v4.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll - ..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll + ..\..\packages\Xamarin.Android.Support.v7.CardView.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll - ..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll + ..\..\packages\Xamarin.Android.Support.v7.Palette.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll - ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll + ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll - ..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll + ..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll - ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll + ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll - ..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll + ..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll - ..\..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll + ..\..\packages\Xamarin.Android.Support.Design.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll - ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll + ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\FormsViewGroup.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\MonoAndroid10\FormsViewGroup.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Core.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\MonoAndroid10\Xamarin.Forms.Core.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\MonoAndroid10\Xamarin.Forms.Platform.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll @@ -142,22 +142,21 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/samples/HockeyAppSampleForms/Droid/packages.config b/samples/HockeyAppSampleForms/Droid/packages.config index 4913ec6..2c98fc3 100644 --- a/samples/HockeyAppSampleForms/Droid/packages.config +++ b/samples/HockeyAppSampleForms/Droid/packages.config @@ -1,21 +1,21 @@  - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/samples/HockeyAppSampleForms/HockeyAppSampleForms.csproj b/samples/HockeyAppSampleForms/HockeyAppSampleForms.csproj index 5ff567e..babf9b0 100644 --- a/samples/HockeyAppSampleForms/HockeyAppSampleForms.csproj +++ b/samples/HockeyAppSampleForms/HockeyAppSampleForms.csproj @@ -48,13 +48,13 @@ - ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll + ..\packages\Xamarin.Forms.2.3.4.270\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll - ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll + ..\packages\Xamarin.Forms.2.3.4.270\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll - ..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll + ..\packages\Xamarin.Forms.2.3.4.270\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/samples/HockeyAppSampleForms/iOS/HockeyAppSampleForms.iOS.csproj b/samples/HockeyAppSampleForms/iOS/HockeyAppSampleForms.iOS.csproj index 0737010..d4aab45 100644 --- a/samples/HockeyAppSampleForms/iOS/HockeyAppSampleForms.iOS.csproj +++ b/samples/HockeyAppSampleForms/iOS/HockeyAppSampleForms.iOS.csproj @@ -85,16 +85,16 @@ - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll - ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll + ..\..\packages\Xamarin.Forms.2.3.4.270\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll @@ -131,5 +131,5 @@ - + \ No newline at end of file diff --git a/samples/HockeyAppSampleForms/iOS/Info.plist b/samples/HockeyAppSampleForms/iOS/Info.plist index de8f92a..1b161a4 100644 --- a/samples/HockeyAppSampleForms/iOS/Info.plist +++ b/samples/HockeyAppSampleForms/iOS/Info.plist @@ -1,4 +1,4 @@ - + @@ -44,4 +44,3 @@ Assets.xcassets/AppIcons.appiconset - diff --git a/samples/HockeyAppSampleForms/iOS/packages.config b/samples/HockeyAppSampleForms/iOS/packages.config index 5f8f73c..c8b7018 100644 --- a/samples/HockeyAppSampleForms/iOS/packages.config +++ b/samples/HockeyAppSampleForms/iOS/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/samples/HockeyAppSampleForms/packages.config b/samples/HockeyAppSampleForms/packages.config index 15be8a9..46b6cf7 100644 --- a/samples/HockeyAppSampleForms/packages.config +++ b/samples/HockeyAppSampleForms/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file From a58b7df14e854914849e039f243154c74f2fea7a Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Tue, 26 Sep 2017 16:15:00 -0700 Subject: [PATCH 9/9] Bump minimum OS version in iOS Sample to iOS 8 --- samples/HockeyAppSampleiOS/Info.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/HockeyAppSampleiOS/Info.plist b/samples/HockeyAppSampleiOS/Info.plist index 2769525..c1dccc1 100644 --- a/samples/HockeyAppSampleiOS/Info.plist +++ b/samples/HockeyAppSampleiOS/Info.plist @@ -11,7 +11,7 @@ LSRequiresIPhoneOS MinimumOSVersion - 6.0 + 8.0 UIDeviceFamily 1