cc.fovea.cordova.purchase
Advanced tools
Comparing version 7.2.3 to 7.2.4
{ | ||
"name": "cc.fovea.cordova.purchase", | ||
"version": "7.2.3", | ||
"version": "7.2.4", | ||
"description": "Cordova Purchase plugin for iOS and Android (AppStore and PlayStore)", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -24,4 +24,4 @@ // | ||
// turn prevents the plugin from re-installing. Work-around below: | ||
fs.unlinkSync(path.join(platformRoot, 'app', 'src', 'main', 'aidl', 'com', 'android', 'vending', 'billing', 'IInAppBillingService.aidl')); | ||
fs.unlinkSync(path.join(platformRoot, 'src', 'com', 'android', 'vending', 'billing', 'IInAppBillingService.aidl')); | ||
rmByPathSync(path.join(platformRoot, 'app', 'src', 'main', 'aidl', 'com', 'android', 'vending', 'billing', 'IInAppBillingService.aidl')); | ||
rmByPathSync(path.join(platformRoot, 'src', 'com', 'android', 'vending', 'billing', 'IInAppBillingService.aidl')); | ||
@@ -67,2 +67,7 @@ // Android Studio or similar | ||
} | ||
function rmByPathSync(targetFile) { | ||
if (fs.existsSync(targetFile)) | ||
fs.unlinkSync(targetFile); | ||
} | ||
}; |
Sorry, the diff of this file is not supported yet
811921
14564