Good day sir, I have started using your library but it seems my service is not started.
I followed your sample app.
I have added SnapServicesContext.startup(getApplicationContext(), new SnapConfigOptions.Builder() .killSeparateProcess(true).setLogLevel(SnapLogger.VERBOSE).build());
in my application class, and in my main activity's onCreate
Intent mIntent = new Intent(getApplicationContext(), TestService.class); mIntent.setAction("testservice"); SnapServicesContext.startService(mIntent);
Good day sir, I have started using your library but it seems my service is not started. I followed your sample app. I have added
SnapServicesContext.startup(getApplicationContext(), new SnapConfigOptions.Builder() .killSeparateProcess(true).setLogLevel(SnapLogger.VERBOSE).build());
in my application class, and in my main activity's onCreateIntent mIntent = new Intent(getApplicationContext(), TestService.class); mIntent.setAction("testservice"); SnapServicesContext.startService(mIntent);
Here's my TestService class content