microsoft / ace

Build Cordova apps with true native UI
http://microsoft.github.io/ace
Other
850 stars 157 forks source link

start android activity through Ace #62

Closed Paul-Lo closed 7 years ago

Paul-Lo commented 7 years ago

Is it possible to start my custom android activity through Ace? If yes, how do we achieve it?

I've tried several days but can't achieve that.

Thanks.

adnathan commented 7 years ago

I just exposed the ace.android.startActivity API to JavaScript with commit 34199c4622caa34e685f8d41ba746d36ba63aee0. Thanks!

adnathan commented 7 years ago

Note that the first activity still needs to be MainActivity (deriving from CordovaActivity). You could modify the auto-generated code in MainActivity.java if you wanted to customize that.

Paul-Lo commented 7 years ago

Much appreciated, Adam.