Created
October 26, 2023 13:24
-
-
Save phpmaps/c1515f0af18cf15518b3d4d29f10000e to your computer and use it in GitHub Desktop.
Cordova hide from UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Do this to test faceMatch non-UI API | |
cordova.exec(function(data) { | |
console.log("face match Success: "+data); | |
myObj = JSON.stringify(data); | |
finishOnboarding(); | |
}, function(err) { | |
console.log("Error faceMatch: "+ err); | |
finishOnboarding(); | |
}, "Cplugin", "faceMatch", []); | |
//Do this, comment this line in you existing app | |
finishOnboarding(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment