I need to know what the activities available of a given application are in Android.
I know you can do this: List of all activities in App but I was wondering if there is a simpler way an also I DONT WANT TO INSTALL THE APP TO SEE AVAILABLE ACTIVITIES
Let's say I want to open Google PlayStore using startapp plugin: https://github.com/lampaa/org.apache.cordova.startapp to download a specific app, then I need to know what activity to use right ?
navigator.startApp.start([
"com.example.hello", // applucation
"com.example.hello.MainActivity", // activity
"product_id", // key
"100" // value
], function(message) { /* success */
console.log(message); // => OK
},
function(error) { /* error */
console.log('47', error);
});
By the way I'm using Cordova and Sencha Touch (if that matters).
Any help appreciated :)