Skip to content

Commit

Permalink
Remove android_iap submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
j3k0 committed Feb 7, 2015
1 parent e3bfbd1 commit dd566c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "git_modules/android_iap"]
path = git_modules/android_iap
url = https://github.com/j3k0/AndroidInAppBilling.git
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ doc-contrib: test-js
doc: doc-api doc-contrib

sync-android:
@rsync -qrv git_modules/android_iap/v3/src/android/ src/android
@cp git_modules/android_iap/v3/www/inappbilling.js src/js/platforms/android-bridge.js
@#rsync -qrv git_modules/android_iap/v3/src/android/ src/android
@#cp git_modules/android_iap/v3/www/inappbilling.js src/js/platforms/android-bridge.js

clean:
@find . -name '*~' -exec rm '{}' ';'
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cc.fovea.cordova.purchase"
version="3.10.0">
version="3.10.1">

<name>Purchase</name>
<description>Cordova Purchase plugin for iOS and Android (AppStore and PlayStore)</description>
Expand Down
6 changes: 3 additions & 3 deletions www/store-ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -1271,15 +1271,15 @@ store.verbosity = 0;
}
function storekitRestoreCompleted() {
store.log.info("ios -> restore completed");
store.trigger('refresh-completed');
store.trigger("refresh-completed");
}
function storekitRestoreFailed() {
store.log.warn("ios -> restore failed");
store.error({
code: store.ERR_REFRESH,
message: "Failed to restore purchases during refresh"
});
store.trigger('refresh-failed');
store.trigger("refresh-failed");
}
store._refreshForValidation = function(callback) {
storekitRefreshReceipts(callback);
Expand Down Expand Up @@ -1343,4 +1343,4 @@ store.verbosity = 0;
}, false);
})();

module.exports = store;
module.exports = store;

0 comments on commit dd566c3

Please sign in to comment.