solve warning ""Service Intent must be explicit: Intent {
act=com.enhance.gameservice.IGameTuningService }""
This commit is contained in:
iris-wy 2015-06-09 18:43:46 +08:00
parent a364d6ecfc
commit 79b3d70b60
1 changed files with 3 additions and 1 deletions

View File

@ -116,7 +116,9 @@ public class Cocos2dxHelper {
sInited = true;
//Enhance API modification begin
activity.getApplicationContext().bindService(new Intent(IGameTuningService.class.getName()), connection, Context.BIND_AUTO_CREATE);
Intent serviceIntent = new Intent(IGameTuningService.class.getName());
serviceIntent.setPackage("com.enhance.gameservice");
boolean suc = activity.getApplicationContext().bindService(serviceIntent, connection, Context.BIND_AUTO_CREATE);
//Enhance API modification end
}
}