I have the following code in my typescript file
const startActivity: android.app.Activity = app.android.startActivity;
const context: android.content.Context = app.android.context;
let intent: android.content.Intent;
why does it shows an error 'cannot find namespace 'android'. Do i need to install plugin related to native android (eg tns-platform-declarations)
Thanks.
Your help is very much appreciated.