You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script type="text/javascript" charset="utf-8">
document.addEventListener('onpageshow', onPageShow, false);
function onPageShow() {
```
function successHandler (result) {
var strResult = "";
if(typeof result === 'object') {
strResult = JSON.stringify(result);
} else {
strResult = result;
}
alert("SUCCESS: \r\n"+strResult );
}
function errorHandler (error) {
alert("ERROR: \r\n"+error );
}
inappbilling.init(successInit,errorCallback, {showLog:true})
function successInit(result) {
// display the extracted text
alert(result);
// make the purchase
inappbilling.getAvailableProducts(successHandler, errorHandler);
}
function errorCallback(error) {
alert(error);
}
```
}
</script>]
I've upload the apk into developer console like test alpha and published, I've added my second gmail account with testing access, but when I install the apk in release mode on my device, the app doesn't retrive my active prudct.
Can you help me please?
Thanks
The text was updated successfully, but these errors were encountered:
I've followed step to step the guide to automatic install the plugin, I've phonegap 4.2.0, I've insert gap:plugin parameter
in my config.xml, and this is my code:
[<script type="text/javascript" src="js/inappbilling.js"></script>
<script type="text/javascript" charset="utf-8"> document.addEventListener('onpageshow', onPageShow, false); function onPageShow() { ``` function successHandler (result) { var strResult = ""; if(typeof result === 'object') { strResult = JSON.stringify(result); } else { strResult = result; } alert("SUCCESS: \r\n"+strResult ); } function errorHandler (error) { alert("ERROR: \r\n"+error ); } inappbilling.init(successInit,errorCallback, {showLog:true}) function successInit(result) { // display the extracted text alert(result); // make the purchase inappbilling.getAvailableProducts(successHandler, errorHandler); } function errorCallback(error) { alert(error); } ``` } </script>]I've upload the apk into developer console like test alpha and published, I've added my second gmail account with testing access, but when I install the apk in release mode on my device, the app doesn't retrive my active prudct.
Can you help me please?
Thanks
The text was updated successfully, but these errors were encountered: