Merge pull request #12261 from iris-wy/v3

fix bug #12200
This commit is contained in:
子龙山人 2015-06-10 11:39:22 +08:00
commit b666b373c7
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
}
}