We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Create intent to start service. Just add service class name to constructor and you could start service.
OmegaIntentBuilder.from(this) .service(TestService.class) .startService();
Also you can put data to extras.
OmegaIntentBuilder.from(this) .service(TestService.class) .putExtra("Your_key", Integer.MAX_VALUE) .putExtra("Your_key2", Integer.MIN_VALUE) .startService();