Re: Developing and running D GUI app on Android

2021-03-12 Thread Shawn Berry via Digitalmars-d-learn
On Sunday, 10 January 2021 at 18:58:13 UTC, aberba wrote: I'm looking to explore running a D application on Android based on Adams previous foundation work. However, I'm not familiar with the Android + D integration so I need some help. Has any of you successfully done that? Could use a

Re: Developing and running D GUI app on Android

2021-01-13 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 13 January 2021 at 20:23:22 UTC, H. S. Teoh wrote: Adam may be written a script for this, I'm not 100% sure. Yeah, my code does it all, though the auto-generation is more about accessing Java from D than vice versa, since implementing the D parts are simple. See the

Re: Developing and running D GUI app on Android

2021-01-13 Thread H. S. Teoh via Digitalmars-d-learn
On Wed, Jan 13, 2021 at 07:51:08PM +, aberba via Digitalmars-d-learn wrote: [...] > So Adam's tool setup is pretty clear (talked to him). What remains is > calling Java classes and interacting with the Android's API. I know a > little bit of Java but not enough Android. Just the calling >

Re: Developing and running D GUI app on Android

2021-01-13 Thread aberba via Digitalmars-d-learn
On Wednesday, 13 January 2021 at 02:02:16 UTC, H. S. Teoh wrote: On Sun, Jan 10, 2021 at 06:58:13PM +, aberba via Digitalmars-d-learn wrote: [...] First, you need a way to build an APK, and then transfer that to your Android device for testing. Building an APK *can* be done manually

Re: Developing and running D GUI app on Android

2021-01-12 Thread H. S. Teoh via Digitalmars-d-learn
On Sun, Jan 10, 2021 at 06:58:13PM +, aberba via Digitalmars-d-learn wrote: > I'm looking to explore running a D application on Android based on > Adams previous foundation work. However, I'm not familiar with the > Android + D integration so I need some help. > > Has any of you successfully

Re: Developing and running D GUI app on Android

2021-01-11 Thread evilrat via Digitalmars-d-learn
On Monday, 11 January 2021 at 07:38:00 UTC, Elronnd wrote: On Monday, 11 January 2021 at 06:26:41 UTC, evilrat wrote: Android itself is just linux under the hood, however the launcher starts java process that fires up your activity class (main in native languages) from there you just call your

Re: Developing and running D GUI app on Android

2021-01-10 Thread Elronnd via Digitalmars-d-learn
On Monday, 11 January 2021 at 06:26:41 UTC, evilrat wrote: Android itself is just linux under the hood, however the launcher starts java process that fires up your activity class (main in native languages) from there you just call your native code and that's it. It turns out that you don't

Re: Developing and running D GUI app on Android

2021-01-10 Thread evilrat via Digitalmars-d-learn
On Sunday, 10 January 2021 at 18:58:13 UTC, aberba wrote: I'm looking to explore running a D application on Android based on Adams previous foundation work. However, I'm not familiar with the Android + D integration so I need some help. Has any of you successfully done that? Could use a