Updated iOS SDK to 4.0.1
This commit is contained in:
Родитель
9e429e22c7
Коммит
601110a7db
|
@ -39,7 +39,10 @@ cordova plugin add cordova-plugin-ms-azure-mobile-engagement --variable KEY=<val
|
|||
|
||||
#### Android Variables
|
||||
- `AZME_ANDROID_CONNECTION_STRING` : the Android connection string (to retrieve from the AZME portal)
|
||||
- `AZME_ANDROID_REACH_ICON` : the icon used for reach notification : must be the name of the resource without any extension, nor drawable prefix (ex: `mynotificationicon`), and the icon file must be copied into your android project (`platforms/android/res/drawable)`
|
||||
- `AZME_ANDROID_REACH_ICON` : the icon used for reach notification
|
||||
- must be the name of the resource without any extension, nor drawable prefix (ex: `mynotificationicon`)
|
||||
- the icon file must be copied into your android project with its extension (ex: `platforms/android/res/drawable/mynotificationicon.png`)
|
||||
|
||||
- `AZME_ANDROID_GOOGLE_PROJECT_NUMBER` : the project number used as the GCM (Google Cloud Messaging) sender ID
|
||||
|
||||
#### Windows Variables
|
||||
|
@ -287,6 +290,9 @@ Engagement.getStatus( _statusCallback, [_failure]);
|
|||
History
|
||||
----
|
||||
|
||||
##### 3.2.3
|
||||
* Updated iOS SDK to 4.0.1
|
||||
|
||||
##### 3.2.2
|
||||
* Fixed location reporting support for Cordova 6.3.x+
|
||||
* Fixed permissions support when using Fine Location reporting on Android
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-background-reporting" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-background-reporting" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
|
||||
<name>Azure Mobile Engagement Background Reporting</name>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-finerealtime-location" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-finerealtime-location" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
|
||||
<name>Azure Mobile Engagement Fine Realtime Location</name>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-foreground-reporting" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-foreground-reporting" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
|
||||
<name>Azure Mobile Engagement Foreground Reporting</name>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-lazyarea-location" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-lazyarea-location" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
|
||||
<name>Azure Mobile Engagement Lazy Area Location</name>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cordova-plugin-ms-azure-mobile-engagement",
|
||||
"version": "3.2.2",
|
||||
"version": "3.2.3",
|
||||
"description": "Cordova plugin for Azure Mobile Engagement",
|
||||
"cordova": {
|
||||
"id": "cordova-plugin-ms-azure-mobile-engagement",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<name>Azure Mobile Engagement</name>
|
||||
<description>Azure Mobile Engagement</description>
|
||||
<keywords>cordova,azme, azure, mobile, engagement</keywords>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-realtime-location" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-realtime-location" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
|
||||
<name>Azure Mobile Engagement Real Time Location</name>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ import com.microsoft.azure.engagement.shared.EngagementShared;
|
|||
public class AZME extends CordovaPlugin {
|
||||
|
||||
private static final String pluginName = "CDVAZME";
|
||||
private static final String pluginVersion = "3.2.2";
|
||||
private static final String pluginVersion = "3.2.3";
|
||||
private static final String nativeSDKVersion = "4.2.3"; // to eventually retrieve from the SDK itself
|
||||
|
||||
public CordovaInterface cordova = null;
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#import <objc/message.h>
|
||||
#include "AZMECordova.h"
|
||||
|
||||
#define AZME_PLUGIN_VERSION @"3.2.2"
|
||||
#define NATIVE_PLUGIN_VERSION @"4.0.0"
|
||||
#define AZME_PLUGIN_VERSION @"3.2.3"
|
||||
#define NATIVE_PLUGIN_VERSION @"4.0.1"
|
||||
#define SDK_NAME @"CDVAZME"
|
||||
|
||||
@implementation AppDelegate(AZME)
|
||||
|
|
Двоичные данные
src/ios/EngagementReach/libreach.a
Двоичные данные
src/ios/EngagementReach/libreach.a
Двоичный файл не отображается.
Двоичные данные
src/ios/EngagementSDK/libengagement.a
Двоичные данные
src/ios/EngagementSDK/libengagement.a
Двоичный файл не отображается.
|
@ -5,7 +5,7 @@
|
|||
* Licensed under the MIT license. See License.txt in the project root for license information.
|
||||
*/
|
||||
-->
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-tests" version="3.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<plugin id="cordova-plugin-ms-azure-mobile-engagement-tests" version="3.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<name>Azure Mobile Engagement Tests</name>
|
||||
<js-module src="tests.js"/>
|
||||
</plugin>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
module.exports = {
|
||||
|
||||
pluginName : 'Engagement',
|
||||
pluginVersion : '3.2.2',
|
||||
pluginVersion : '3.2.3',
|
||||
|
||||
onError : function(_error) {
|
||||
console.error(_error);
|
||||
|
|
Загрузка…
Ссылка в новой задаче