如果你的manifest文件中配置的 service (或activity)添加了 process = :xxx 标签, 那么这个service 或activity 会运行的另外的进程中, 这样或导致 application 对象初始化多次。
下面的com.zzw.october、com.zzw.october:push、com.zzw.october:remote 是三个独立的进程。
如果在application 的oncreate 方法中做了一些不能重复的初始化,那么需要对 application name 做过滤:
//umeng, baidu 等service 运行在单独的进程中,导致重复初始化公共组件, 所以过滤掉String currentProcName = "";int pid = android.os.Process.myPid();ActivityManager manager = (ActivityManager) this.getSystemService(Context.ACTIVITY_SERVICE);for (ActivityManager.RunningAppProcessInfo processInfo : manager.getRunningAppProcesses()){ if (processInfo.pid == pid) { currentProcName = processInfo.processName; Log.w(TAG, "process name:" + currentProcName); if(currentProcName != null && !currentProcName.equals("com.zzw.october")){ Log.w(TAG, "not main app, process name:" + currentProcName); return; } }}//initializing........