private static String getHuaWeiAppId()

in android/src/main/java/com/aliyun/ams/push/AliyunThirdPushUtils.java [147:153]


	private static String getHuaWeiAppId(Context context) {
		String value = getAppMetaData(context, "com.huawei.hms.client.appid");
		if (value != null && value.startsWith("appid=")) {
			return value.replace("appid=", "");
		}
		return null;
	}