Skip to content

Commit

Permalink
mod: rename package name
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyuanxiao committed Oct 9, 2018
1 parent 1432b72 commit 89f07e4
Show file tree
Hide file tree
Showing 205 changed files with 1,011 additions and 1,061 deletions.

This file was deleted.

2 changes: 1 addition & 1 deletion eros-framework/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.benmu.framework">
package="com.eros.framework">


<application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework;
package com.eros.framework;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework;
package com.eros.framework;

import android.app.Activity;
import android.app.ActivityManager;
Expand All @@ -8,16 +8,16 @@
import android.support.multidex.MultiDex;
import android.util.DebugUtils;

import com.benmu.framework.activity.AbstractWeexActivity;
import com.benmu.framework.adapter.router.RouterTracker;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.debug.ws.DebuggerWebSocket;
import com.benmu.framework.extend.adapter.DefaultTypefaceAdapter;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.GlobalEventManager;
import com.benmu.framework.manager.impl.LifecycleManager;
import com.benmu.framework.update.VersionChecker;
import com.benmu.framework.utils.DebugableUtil;
import com.eros.framework.activity.AbstractWeexActivity;
import com.eros.framework.adapter.router.RouterTracker;
import com.eros.framework.constant.Constant;
import com.eros.framework.debug.ws.DebuggerWebSocket;
import com.eros.framework.extend.adapter.DefaultTypefaceAdapter;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.GlobalEventManager;
import com.eros.framework.manager.impl.LifecycleManager;
import com.eros.framework.update.VersionChecker;
import com.eros.framework.utils.DebugableUtil;
import com.taobao.weex.WXSDKInstance;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework;
package com.eros.framework;

import android.annotation.TargetApi;
import android.app.Application;
Expand All @@ -12,29 +12,29 @@

import com.alibaba.android.bindingx.plugin.weex.BindingX;
import com.alibaba.weex.plugin.loader.WeexPluginContainer;
import com.benmu.framework.adapter.BMDefaultUriAdapter;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.event.DispatchEventCenter;
import com.benmu.framework.event.mediator.EventCenter;
import com.benmu.framework.extend.adapter.DefaultTypefaceAdapter;
import com.benmu.framework.extend.adapter.DefaultWXHttpAdapter;
import com.benmu.framework.extend.adapter.image.DefaultWXImageAdapter;
import com.benmu.framework.extend.adapter.LightlyWebSocketFactory;
import com.benmu.framework.extend.hook.ui.components.HookWeb;
import com.benmu.framework.extend.hook.ui.components.HookWxScroller;
import com.benmu.framework.extend.mediator.MediatorDocker;
import com.benmu.framework.extend.hook.ui.components.HookImage;
import com.benmu.framework.extend.hook.ui.components.HookInput;
import com.benmu.framework.extend.hook.ui.components.HookListComponent;
import com.benmu.framework.extend.hook.ui.components.HookTextarea;
import com.benmu.framework.extend.hook.ui.components.HookWXText;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.AxiosManager;
import com.benmu.framework.manager.impl.CustomerEnvOptionManager;
import com.benmu.framework.utils.AppUtils;
import com.benmu.framework.utils.DebugableUtil;
import com.benmu.framework.utils.SharePreferenceUtil;
import com.benmu.widget.utils.BaseCommonUtil;
import com.eros.framework.adapter.BMDefaultUriAdapter;
import com.eros.framework.constant.Constant;
import com.eros.framework.event.DispatchEventCenter;
import com.eros.framework.event.mediator.EventCenter;
import com.eros.framework.extend.adapter.DefaultTypefaceAdapter;
import com.eros.framework.extend.adapter.DefaultWXHttpAdapter;
import com.eros.framework.extend.adapter.image.DefaultWXImageAdapter;
import com.eros.framework.extend.adapter.LightlyWebSocketFactory;
import com.eros.framework.extend.hook.ui.components.HookWeb;
import com.eros.framework.extend.hook.ui.components.HookWxScroller;
import com.eros.framework.extend.mediator.MediatorDocker;
import com.eros.framework.extend.hook.ui.components.HookImage;
import com.eros.framework.extend.hook.ui.components.HookInput;
import com.eros.framework.extend.hook.ui.components.HookListComponent;
import com.eros.framework.extend.hook.ui.components.HookTextarea;
import com.eros.framework.extend.hook.ui.components.HookWXText;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.AxiosManager;
import com.eros.framework.manager.impl.CustomerEnvOptionManager;
import com.eros.framework.utils.AppUtils;
import com.eros.framework.utils.DebugableUtil;
import com.eros.framework.utils.SharePreferenceUtil;
import com.eros.widget.utils.BaseCommonUtil;
import com.taobao.weex.InitConfig;
import com.taobao.weex.WXEnvironment;
import com.taobao.weex.WXSDKEngine;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package com.benmu.framework;
package com.eros.framework;

import com.alibaba.weex.plugin.loader.WeexPluginContainer;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.manager.Manager;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.CustomerEnvOptionManager;
import com.taobao.weex.ui.component.WXComponent;
import com.eros.framework.constant.Constant;
import com.eros.framework.manager.Manager;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.CustomerEnvOptionManager;

import java.util.HashMap;

Expand All @@ -16,7 +14,7 @@
public class PlugManager {
public static void initPlug() {
pluginInit("com.plugamap.manager.GeoManager");
pluginInit("com.benmu.erosplugingt.manager.PushManager");
pluginInit("com.eros.erosplugingt.manager.PushManager");
}

private static void pluginInit(String clazzName) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
package com.benmu.framework.activity;

import com.benmu.framework.BMWXApplication;
import com.benmu.framework.BMWXEnvironment;
import com.benmu.framework.BuildConfig;
import com.benmu.framework.adapter.router.RouterTracker;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.constant.WXConstant;
import com.benmu.framework.constant.WXEventCenter;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.PermissionManager;
import com.benmu.framework.manager.impl.dispatcher.DispatchEventManager;
import com.benmu.framework.model.AxiosResultBean;
import com.benmu.framework.model.UploadResultBean;
import com.benmu.framework.model.WeexEventBean;
import com.benmu.framework.utils.DebugableUtil;
import com.benmu.framework.utils.WXAnalyzerDelegate;
import com.benmu.widget.utils.ColorUtils;
import com.benmu.widget.view.DebugErrorDialog;
import com.benmu.widget.view.loading.LoadingDialog;
package com.eros.framework.activity;

import com.eros.framework.BMWXApplication;
import com.eros.framework.BMWXEnvironment;
import com.eros.framework.BuildConfig;
import com.eros.framework.adapter.router.RouterTracker;
import com.eros.framework.constant.Constant;
import com.eros.framework.constant.WXConstant;
import com.eros.framework.constant.WXEventCenter;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.PermissionManager;
import com.eros.framework.manager.impl.dispatcher.DispatchEventManager;
import com.eros.framework.model.AxiosResultBean;
import com.eros.framework.model.UploadResultBean;
import com.eros.framework.model.WeexEventBean;
import com.eros.framework.utils.DebugableUtil;
import com.eros.framework.utils.WXAnalyzerDelegate;
import com.eros.widget.utils.ColorUtils;
import com.eros.widget.view.DebugErrorDialog;
import com.eros.widget.view.loading.LoadingDialog;

import com.google.zxing.integration.android.IntentIntegrator;
import com.google.zxing.integration.android.IntentResult;
Expand Down Expand Up @@ -54,19 +54,19 @@
import android.widget.RelativeLayout;
import android.widget.Toast;

import com.benmu.framework.R;
import com.benmu.framework.manager.impl.GlobalEventManager;
import com.benmu.framework.manager.impl.ImageManager;
import com.benmu.framework.manager.impl.PersistentManager;
import com.benmu.framework.manager.impl.status.StatusBarManager;
import com.benmu.framework.model.CameraResultBean;
import com.benmu.framework.model.RouterModel;
import com.benmu.framework.model.UploadImageBean;
import com.benmu.framework.utils.InsertEnvUtil;
import com.benmu.framework.utils.WXCommonUtil;
import com.benmu.widget.view.BMFloatingLayer;
import com.benmu.widget.view.BMLoding;
import com.benmu.widget.view.BaseToolBar;
import com.eros.framework.R;
import com.eros.framework.manager.impl.GlobalEventManager;
import com.eros.framework.manager.impl.ImageManager;
import com.eros.framework.manager.impl.PersistentManager;
import com.eros.framework.manager.impl.status.StatusBarManager;
import com.eros.framework.model.CameraResultBean;
import com.eros.framework.model.RouterModel;
import com.eros.framework.model.UploadImageBean;
import com.eros.framework.utils.InsertEnvUtil;
import com.eros.framework.utils.WXCommonUtil;
import com.eros.widget.view.BMFloatingLayer;
import com.eros.widget.view.BMLoding;
import com.eros.widget.view.BaseToolBar;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.bean.ImageItem;
import com.lzy.imagepicker.util.BitmapUtil;
Expand Down Expand Up @@ -360,7 +360,7 @@ private void createLoadingView() {
LayoutInflater layoutInflater = LayoutInflater.from(this);
decorView = (ViewGroup) (this).getWindow().getDecorView().findViewById(android.R.id
.content);
rootView = (ViewGroup) layoutInflater.inflate(com.benmu.R.layout
rootView = (ViewGroup) layoutInflater.inflate(com.eros.R.layout
.layout_svprogresshud, null, false);
rootView.setLayoutParams(new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework.activity;
package com.eros.framework.activity;

import android.app.Activity;
import android.graphics.Rect;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework.activity;
package com.eros.framework.activity;


import android.app.Activity;
Expand All @@ -12,9 +12,9 @@
import android.widget.ImageView;
import android.widget.LinearLayout;

import com.benmu.framework.R;
import com.benmu.framework.model.BroeserImgModuleBean;
import com.benmu.framework.view.ViewPagerFix;
import com.eros.framework.R;
import com.eros.framework.model.BroeserImgModuleBean;
import com.eros.framework.view.ViewPagerFix;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.RequestOptions;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework.activity;
package com.eros.framework.activity;

import android.content.Intent;
import android.os.Bundle;
Expand All @@ -7,16 +7,16 @@
import android.widget.CompoundButton;
import android.widget.TextView;

import com.benmu.framework.R;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.constant.WXConstant;
import com.benmu.framework.debug.ws.DebuggerWebSocket;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.ParseManager;
import com.benmu.framework.manager.impl.dispatcher.DispatchEventManager;
import com.benmu.framework.model.JsVersionInfoBean;
import com.benmu.framework.utils.SharePreferenceUtil;
import com.benmu.widget.utils.BaseCommonUtil;
import com.eros.framework.R;
import com.eros.framework.constant.Constant;
import com.eros.framework.constant.WXConstant;
import com.eros.framework.debug.ws.DebuggerWebSocket;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.ParseManager;
import com.eros.framework.manager.impl.dispatcher.DispatchEventManager;
import com.eros.framework.model.JsVersionInfoBean;
import com.eros.framework.utils.SharePreferenceUtil;
import com.eros.widget.utils.BaseCommonUtil;

/**
* Created by Carry on 2017/8/25.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework.activity;
package com.eros.framework.activity;

import android.annotation.SuppressLint;
import android.app.AlertDialog;
Expand All @@ -24,20 +24,20 @@
import android.widget.ProgressBar;
import android.widget.RelativeLayout;

import com.benmu.framework.BMWXApplication;
import com.benmu.framework.BMWXEnvironment;
import com.benmu.framework.R;
import com.benmu.framework.adapter.router.RouterTracker;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.constant.WXEventCenter;
import com.benmu.framework.event.mediator.EventCenter;
import com.benmu.framework.manager.ManagerFactory;
import com.benmu.framework.manager.impl.FileManager;
import com.benmu.framework.manager.impl.ModalManager;
import com.benmu.framework.manager.impl.dispatcher.DispatchEventManager;
import com.benmu.framework.model.WebViewParamBean;
import com.benmu.framework.utils.SharePreferenceUtil;
import com.benmu.widget.utils.BaseCommonUtil;
import com.eros.framework.BMWXApplication;
import com.eros.framework.BMWXEnvironment;
import com.eros.framework.R;
import com.eros.framework.adapter.router.RouterTracker;
import com.eros.framework.constant.Constant;
import com.eros.framework.constant.WXEventCenter;
import com.eros.framework.event.mediator.EventCenter;
import com.eros.framework.manager.ManagerFactory;
import com.eros.framework.manager.impl.FileManager;
import com.eros.framework.manager.impl.ModalManager;
import com.eros.framework.manager.impl.dispatcher.DispatchEventManager;
import com.eros.framework.model.WebViewParamBean;
import com.eros.framework.utils.SharePreferenceUtil;
import com.eros.widget.utils.BaseCommonUtil;

import java.io.File;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.benmu.framework.activity;
package com.eros.framework.activity;

import android.content.BroadcastReceiver;
import android.content.Context;
Expand All @@ -13,17 +13,17 @@
import android.view.WindowManager;
import android.widget.FrameLayout;

import com.benmu.framework.BMWXApplication;
import com.benmu.framework.BMWXEnvironment;
import com.benmu.framework.R;
import com.benmu.framework.constant.Constant;
import com.benmu.framework.event.TabbarEvent;
import com.benmu.framework.manager.impl.GlobalEventManager;
import com.benmu.framework.model.RouterModel;
import com.benmu.framework.model.TabbarBadgeModule;
import com.benmu.framework.model.WeexEventBean;
import com.benmu.framework.utils.SharePreferenceUtil;
import com.benmu.framework.view.TableView;
import com.eros.framework.BMWXApplication;
import com.eros.framework.BMWXEnvironment;
import com.eros.framework.R;
import com.eros.framework.constant.Constant;
import com.eros.framework.event.TabbarEvent;
import com.eros.framework.manager.impl.GlobalEventManager;
import com.eros.framework.model.RouterModel;
import com.eros.framework.model.TabbarBadgeModule;
import com.eros.framework.model.WeexEventBean;
import com.eros.framework.utils.SharePreferenceUtil;
import com.eros.framework.view.TableView;
import com.taobao.weex.WXSDKEngine;
import com.taobao.weex.WXSDKInstance;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package com.benmu.framework.adapter;
package com.eros.framework.adapter;

import android.net.Uri;
import android.support.annotation.NonNull;
import android.text.TextUtils;

import com.benmu.framework.BMWXEnvironment;
import com.eros.framework.BMWXEnvironment;
import com.taobao.weex.WXSDKInstance;
import com.taobao.weex.adapter.URIAdapter;
import com.taobao.weex.common.Constants;
Expand Down
Loading

0 comments on commit 89f07e4

Please sign in to comment.