\frameworks\base\services\core\java\com\android\server\am\ActivityStarter.java::startActivityMayWait()
///M:Add by xxxx 20191024 for: Disable the sharing function of system app start{
///Filter the packageName if the third-party app installed by the user is not disabled
///Example: aInfo.applicationInfo.packageName.equals("com.tencent.weixin");
if ((SystemProperties.getInt("ro.disable.share",0) == 1) && intent.getAction() != null) {
if(intent.getAction().equals(Intent.ACTION_SEND) || intent.getAction().equals(Intent.ACTION_SEND_MULTIPLE)){
ActivityOptions.abort(options);
return ActivityManager.START_SUCCESS;
}
}
///end}
\frameworks\base\services\core\java\com\android