Re: [go-nuts] Re: Pure Golang Android Service

2017-10-24 Thread Daniel Skinner
The manifest can specify hooks for Service implementations, such as to start on-boot, but the platform still requires the implementation of the Service class. One could write a generic NativeService implementation for easy reuse and launching of native processes, but otherwise nothing has changed w

[go-nuts] Re: Pure Golang Android Service

2017-10-24 Thread Seth Moeckel
Has anything here changed? Given that Go mobile apps are really just Go apps, I wonder if a service could be made by simply having the correct manifest... On Monday, November 23, 2015 at 10:45:53 PM UTC-5, Regan Laitila wrote: > > Hello Everyone, > > I'm curious if it is possible to write an all