Back to project page game_guess_lib.
The source code is released under:
MIT License
If you think the Android project game_guess_lib listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.wkmf.guess.lib.service; /*from w w w . java2s. c o m*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; /** * Created by ernestofndz on 07/03/14. */ public class ServiceStarter extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent i = new Intent("com.wkmf.guess.lib.service.GuessGameService"); i.setClass(context, GuessGameService.class); context.startService(i); } }