public static void registerGCM()

in android/src/main/java/com/aliyun/ams/push/AliyunThirdPushUtils.java [45:54]


	public static void registerGCM(Application application) {
		String sendId = getGCMSendId(application);
		String applicationId = getGCMApplicationId(application);
		String projectId = getGCMProjectId(application);
		String apiKey = getGCMApiKey(application);

		if (sendId != null && applicationId != null && projectId != null && apiKey != null) {
			GcmRegister.register(application, sendId, applicationId, projectId, apiKey);
		}
	}