diff --git a/README.md b/README.md index fae46fc..c97bec0 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,18 @@ This plugin has been a BEAST to implement and its maintenance is killing me alre * You'll quickly receive a license key (and instructions) which you can use to install the plugin. * You can now forever use this version and any future version of this plugin for this app without restrictions. +Once the license key (`abc` in this example) is received, you can add the plugin like this: + +```bash +cordova plugin add cordova-plugin-native-keyboard --variable LICENSE=abc +``` + +Or if your iOS and Android package ids are different, use this (supported since plugin version 1.5.8): + +```bash +cordova plugin add cordova-plugin-native-keyboard --variable LIC_ANDROID=abc --variable LIC_IOS=xyz +``` + ## I heard about a trial!? ALL features are available without a license, but you'll be restricted to 5 minutes of usage. Just indefinitely kill and relaunch the app if you need more time ;) diff --git a/package.json b/package.json index 5efbef7..f0a1302 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-native-keyboard", - "version": "1.5.7", + "version": "1.5.8", "description": "This plugin aims to solve common keyboard problems encountered with Cordova / PhoneGap apps. The messenger component (see screenshots) is ready for production, but this plugin will have more tricks up its sleeve. I'll document those once they're ready for primetime as well.", "cordova": { "id": "cordova-plugin-native-keyboard", diff --git a/plugin.xml b/plugin.xml index e046d17..daa6885 100755 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="1.5.8"> Native Keyboard @@ -34,6 +34,8 @@ + + @@ -54,18 +56,22 @@ - $LICENSE + $LIC_ANDROID + $LICENSE - $LICENSE + $LIC_ANDROID + $LICENSE + + @@ -91,6 +97,9 @@ + $LIC_IOS + + $LICENSE diff --git a/src/android/lib/nativekeyboard.jar b/src/android/lib/nativekeyboard.jar index 586a494..f798e4b 100644 Binary files a/src/android/lib/nativekeyboard.jar and b/src/android/lib/nativekeyboard.jar differ diff --git a/src/ios/lib/NativeKeyboard.framework/Info.plist b/src/ios/lib/NativeKeyboard.framework/Info.plist index 7ee7565..dc61dc8 100644 Binary files a/src/ios/lib/NativeKeyboard.framework/Info.plist and b/src/ios/lib/NativeKeyboard.framework/Info.plist differ diff --git a/src/ios/lib/NativeKeyboard.framework/NativeKeyboard b/src/ios/lib/NativeKeyboard.framework/NativeKeyboard index 3eff229..694806c 100644 Binary files a/src/ios/lib/NativeKeyboard.framework/NativeKeyboard and b/src/ios/lib/NativeKeyboard.framework/NativeKeyboard differ