Hi,
there is some more cordova plugin which out of http://ngcordova.com/, can I use those cordova with ionic?
for example, this one:
how can I use it?
these is my steps:
-
cordova plugin add https://github.com/iVanPan/Cordova_QQ.git --variable QQ_APP_ID=YOUR_QQ_APPID
-
include the js to my ionic index file
-
copy the code to app.js:
.run(function($ionicPlatform,YCQQ) {
if (window.cordova && window.cordova.plugins) {
YCQQ.checkClientInstalled(function(){
alert(‘client is installed’);
},function(){
alert(‘client is not installed’);
});
}
})
after I finish these step, I just got the blank page in my ios simulator, am I doing something wrong?
plz advise.
thx!