Ver código fonte

Merge pull request #34 from tabrindle/master

Plugin ID changed per naming convention
Shazron Abdullah 9 anos atrás
pai
commit
431d226af8
2 arquivos alterados com 11 adições e 3 exclusões
  1. 9 1
      README.md
  2. 2 2
      plugin.xml

+ 9 - 1
README.md

@@ -2,7 +2,11 @@ Keychain Plugin for Apache Cordova
 =====================================
 created by Shazron Abdullah
 
-[Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0.html) except for the SFHFKeychainUtils code that is under **src/ios/SFHFKeychainUtils**
+### Installation
+
+```shell
+cordova plugin add cordova-plugin-ios-keychain
+```
 
 Follows the [Cordova Plugin spec](http://cordova.apache.org/docs/en/3.0.0/plugin_ref_spec.md), so that it works with [Plugman](https://github.com/apache/cordova-plugman), or you can install it manually below.
  
@@ -77,3 +81,7 @@ kc.setForKey(successCallback, failureCallback, 'key', 'servicename', 'value');
  */
 kc.removeForKey(successCallback, failureCallback, 'key', 'servicename');
 ```
+
+### License 
+
+[Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0.html) except for the SFHFKeychainUtils code that is under **src/ios/SFHFKeychainUtils**

+ 2 - 2
plugin.xml

@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
-    id="com.shazron.cordova.plugin.keychainutil"
-    version="2.0.0">
+    id="cordova-plugin-ios-keychain"
+    version="3.0.0">
 
     <name>KeyChain Plugin for Cordova iOS</name>
     <description>This plugin allows your app access to the iOS KeyChain from Cordova. See: https://developer.apple.com/library/mac/documentation/security/conceptual/keychainServConcepts/iPhoneTasks/iPhoneTasks.html</description>