I am trying to start service from AsyncTask but cant see that its starts. I also added Service on manefast file.
here the code:
protected Integer doInBackground(Void... values) throws InterruptedException {
//starts service number activite
Intent serviceIntent = new Intent();
serviceIntent.setAction("services.conServise");
context.startService(serviceIntent);
and the manifest file:
<service android:name="services.conServise"></service>
</application>
thanks for help.