Skip to content

Commit

Permalink
Fixed typos, added comments and corrected version #
Browse files Browse the repository at this point in the history
 Please enter the commit message for #your changes. Lines starting
  • Loading branch information
pkumar committed Jul 30, 2015
1 parent 94d5ccd commit fd9ff08
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.idea/
.DS_Store
**/.DS_Store

*.class

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ Make sure to review the Google Play Developer Program [policy](https://play.goog

### Advertising id info ###
#### getAdInfo(success, error);
Gets the advertising id (IDFA) info (id and limit ad flag).
Gets the advertising id (IDFA) info (id and limit ad tracking flag).

* {function()} success: success callback with {idfa: <advertising id (IDFA)>, isLimitAd: <boolean> object argument.
* {function()} success: success callback with {idfa: <advertising id (IDFA)>, limitAd: <boolean>} as object argument.
* {function()} failure: failure callback.

### Advertising id ###
#### getAdId(success, error);
Gets the advertising id (IDFA).

* {function()} success: success callback with <advertising id (IDFA)> string argument.
* {function()} success: success callback with {idfa: <advertising id (IDFA)>} as object argument.
* {function()} failure: failure callback.

### Limit Ad Flag ###
#### getLimitAdFlag(success, error);
Gets the limit add flag.
Gets the limit ad tracking flag.

* {function()} success: success callback with isLimitAd flag boolean argument.
* {function()} success: success callback with { limitAd: <boolean> } as object argument.
* {function()} failure: failure callback.
7 changes: 6 additions & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes

### 0.2.1 (Jul 29, 2015)
### 1.0.3 (Jul 30, 2015)
* Added working code
* Updated Readme, plugin and package for typos
* Added comments

### 1.0.2 (Jul 29, 2015)
* removed extraneous print statement
* Updated files

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-android-idfa",
"version": "1.0.2-dev",
"version": "1.0.3",
"description": "Cordova Advertising ID (IDFA) Plugin for Android using Google Play Services API",
"cordova": {
"id": "cordova-plugin-android-idfa",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-->


<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-android-idfa" version="1.0.1">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-android-idfa" version="1.0.3">

<name>Advertising ID (IDFA) Plugin using Google Play Services for Android</name>
<description>Phonegap, Cordova, Intel XDK plugin for Android to get Advertising Id Info using Google Play Services</description>
Expand Down

0 comments on commit fd9ff08

Please sign in to comment.