Skip to content

Commit

Permalink
fix : packge name
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyuanxiao committed Oct 11, 2018
1 parent 755d6e4 commit e471b3f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public HashMap<String, HashMap<String, String>> getComponentsAndModules() {
HashMap<String, HashMap<String, String>> result = new HashMap<>();

HashMap<String, String> amapMoudles = new HashMap<>();
amapMoudles.put("gtmodule", "com.benmu.erosplugingt.module.WXGTModule");
amapMoudles.put("gtmodule", "com.eros.erosplugingt.module.WXGTModule");

result.put(Constant.CUSTOMER_MODULES, amapMoudles);

Expand All @@ -62,7 +62,7 @@ public void handlePush(Context context, String data) {
BaseEventBean eventBean = new BaseEventBean();
eventBean.context = activity;
eventBean.type = WXEventCenter.EVENT_PUSHMANAGER;
eventBean.clazzName = "com.benmu.framework.event.GlobalEvent";
eventBean.clazzName = "com.eros.framework.event.GlobalEvent";
bean.trigger = false;
ParseManager param = ManagerFactory.getManagerService(ParseManager.class);
String json = param.toJsonString(bean);
Expand All @@ -79,8 +79,8 @@ public void handlePush(Context context, String data) {

private void showNotification(Context context, NotificationBean bean) {
if (bean == null) return;
int iconId = ResourceUtil.getMipmapId("com.benmu.wx", "app_icon");
String appName = context.getResources().getString(ResourceUtil.getStringId("com.benmu" +
int iconId = ResourceUtil.getMipmapId("com.eros.wx", "app_icon");
String appName = context.getResources().getString(ResourceUtil.getStringId("com.eros" +
".wx", "app_name"));

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
Expand Down

0 comments on commit e471b3f

Please sign in to comment.