Peter Kanev
Peter Kanev
@alexrainman about the IntentService issues 1. You have not decorated the extended class with a new name. You need to do like so: ```typescript @JavaProxy("com.ns.mobileIron.AppConfigService") export class AppConnectConfigService extends android.app.IntentService...
@alexrainman I can confirm that building a local aar with the IntentService implementation and an AndroidManifest works as expected and when imported as an aar will merge its manifest properly,...
@alexrainman I've faced this issue after building without cleaning the platforms/android directory after removing a plugin with native dependencies (aar, or plugin from a gradle repository). A fix is available...
@alexrainman how about extending IntentService in Java, call it MyIntentService and declare a public/protected constructor with no parameters, then bring that class along in NativeScript and extend it there, the...
I was not able to reproduce the described behavior when retracing the steps on a plain JavaScript app. When I set breakpoints, and then restart the debug session multiple times...