introduce 'go' method for iOS to launch app without calling canOpenURL for unwhitelisted custom schemes

This commit is contained in:
Raymond Elferink
2016-05-20 14:44:53 +02:00
parent cecbb1e821
commit d78ae595a6
3 changed files with 26 additions and 11 deletions
+6
View File
@@ -41,6 +41,12 @@ module.exports = {
errorCallback = errorCallback || function() {};
exec(completeCallback, errorCallback, "startApp", "check", output);
},
go: function(completeCallback, errorCallback) {
completeCallback = completeCallback || function() {};
errorCallback = errorCallback || function() {};
exec(completeCallback, errorCallback, "startApp", "go", output);
}
}
},