copied src from mohemm cs
parent
a7b7b28cf1
commit
1ac6483d67
@ -1,29 +0,0 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plugin id="com.huawei.cordovahmsgmscheckplugin" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<name>CordovaHMSGMSCheckPlugin</name>
|
||||
<js-module name="CordovaHMSGMSCheckPlugin" src="www/CordovaHMSGMSCheckPlugin.js">
|
||||
<clobbers target="cordova.plugins.CordovaHMSGMSCheckPlugin" />
|
||||
</js-module>
|
||||
<platform name="android">
|
||||
<!-- hook for add maven repositories and agc plugin-->
|
||||
<hook src="scripts/android/after_plugin_install.js" type="after_plugin_install" />
|
||||
<hook src="scripts/android/before_plugin_uninstall.js" type="before_plugin_uninstall" />
|
||||
|
||||
<framework custom="true" src="src/android/build.gradle" type="gradleReference" />
|
||||
<!-- Account Kit dependency-->
|
||||
<framework src="com.huawei.hms:base:5.0.4.301" />
|
||||
<!-- <framework src="com.google.android.gms:play-services-base:17.2.1" /> -->
|
||||
|
||||
<config-file parent="/*" target="res/xml/config.xml">
|
||||
<feature name="CordovaHMSGMSCheckPlugin">
|
||||
<param name="android-package"
|
||||
value="com.huawei.cordovahmsgmscheckplugin.CordovaHMSGMSCheckPlugin" />
|
||||
</feature>
|
||||
</config-file>
|
||||
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
|
||||
<source-file src="src/android/CordovaHMSGMSCheckPlugin.java"
|
||||
target-dir="src/com/huawei/cordovahmsgmscheckplugin" />
|
||||
</platform>
|
||||
<!-- Script help to copy agconnect-services.json to right places-->
|
||||
<hook src="scripts/after_prepare.js" type="after_prepare" />
|
||||
</plugin>
|
||||
@ -1,37 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* This hook makes sure projects using [cordova-plugin-firebase](https://github.com/arnesson/cordova-plugin-firebase)
|
||||
* will build properly and have the required key files copied to the proper destinations when the app is build on Ionic Cloud using the package command.
|
||||
* Credits: https://github.com/arnesson.
|
||||
*/
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
var utilities = require("./lib/utilities");
|
||||
|
||||
var config = fs.readFileSync("config.xml").toString();
|
||||
var name = utilities.getValue(config, "name");
|
||||
|
||||
var ANDROID_DIR = "platforms/android";
|
||||
|
||||
var PLATFORM = {
|
||||
ANDROID: {
|
||||
dest: [ANDROID_DIR + "/app/agconnect-services.json"],
|
||||
src: ["agconnect-services.json"],
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = function (context) {
|
||||
//get platform from the context supplied by cordova
|
||||
var platforms = context.opts.platforms;
|
||||
// Copy key files to their platform specific folders
|
||||
if (
|
||||
platforms.indexOf("android") !== -1 &&
|
||||
utilities.directoryExists(ANDROID_DIR)
|
||||
) {
|
||||
console.log("Preparing HMS GMS Check Kit on Android");
|
||||
// utilities.copyKey(PLATFORM.ANDROID);
|
||||
}
|
||||
};
|
||||
@ -1,9 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Modify the Gradle build file to add a task that will upload the debug symbols
|
||||
// at build time.
|
||||
helper.restoreRootBuildGradle();
|
||||
helper.modifyRootBuildGradle();
|
||||
};
|
||||
@ -1,7 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Remove the Gradle modifications that were added when the plugin was installed.
|
||||
helper.restoreRootBuildGradle();
|
||||
};
|
||||
@ -1,131 +0,0 @@
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
|
||||
function rootBuildGradleExists() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.existsSync(target);
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to read the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function readRootBuildGradle() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.readFileSync(target, "utf-8");
|
||||
}
|
||||
|
||||
/*
|
||||
* Added a dependency on 'com.google.gms' based on the position of the know 'com.android.tools.build' dependency in the build.gradle
|
||||
*/
|
||||
function addDependencies(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(
|
||||
/^(\s*)classpath 'com.android.tools.build(.*)/m
|
||||
);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary dependencies
|
||||
var agcDependency =
|
||||
whitespace + "classpath 'com.huawei.agconnect:agcp:1.2.0.300'";
|
||||
|
||||
var modifiedLine = match[0] + "\n" + agcDependency;
|
||||
|
||||
// modify the actual line
|
||||
return buildGradle.replace(
|
||||
/^(\s*)classpath 'com.android.tools.build(.*)/m,
|
||||
modifiedLine
|
||||
);
|
||||
}
|
||||
|
||||
/*
|
||||
* Add 'google()' and Crashlytics to the repository repo list
|
||||
*/
|
||||
function addRepos(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary repo
|
||||
var huaweiMavenRepo =
|
||||
whitespace + "maven { url 'http://developer.huawei.com/repo/' }";
|
||||
var modifiedLine = match[0] + "\n" + huaweiMavenRepo;
|
||||
|
||||
// modify the actual line
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
|
||||
// update the all projects grouping
|
||||
var allProjectsIndex = buildGradle.indexOf("allprojects");
|
||||
if (allProjectsIndex > 0) {
|
||||
// split the string on allprojects because jcenter is in both groups and we need to modify the 2nd instance
|
||||
var firstHalfOfFile = buildGradle.substring(0, allProjectsIndex);
|
||||
var secondHalfOfFile = buildGradle.substring(allProjectsIndex);
|
||||
|
||||
// Add google() to the allprojects section of the string
|
||||
match = secondHalfOfFile.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo =
|
||||
whitespace + "maven { url 'http://developer.huawei.com/repo/' }";
|
||||
modifiedLine = match[0] + "\n" + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
secondHalfOfFile = secondHalfOfFile.replace(
|
||||
/^(\s*)jcenter\(\)/m,
|
||||
modifiedLine
|
||||
);
|
||||
|
||||
// recombine the modified line
|
||||
buildGradle = firstHalfOfFile + secondHalfOfFile;
|
||||
} else {
|
||||
// this should not happen, but if it does, we should try to add the dependency to the buildscript
|
||||
match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo =
|
||||
whitespace + "maven { url 'http://developer.huawei.com/repo/' }";
|
||||
modifiedLine = match[0] + "\n" + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
}
|
||||
|
||||
return buildGradle;
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to write to the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function writeRootBuildGradle(contents) {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
fs.writeFileSync(target, contents);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
modifyRootBuildGradle: function () {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// Add Google Play Services Dependency
|
||||
buildGradle = addDependencies(buildGradle);
|
||||
|
||||
// Add Google's Maven Repo
|
||||
buildGradle = addRepos(buildGradle);
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
},
|
||||
|
||||
restoreRootBuildGradle: function () {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// remove any lines we added
|
||||
buildGradle = buildGradle.replace(
|
||||
/(?:^|\r?\n)(.*)com.huawei.cordovahmsgmscheckplugin*?(?=$|\r?\n)/g,
|
||||
""
|
||||
);
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
},
|
||||
};
|
||||
@ -1,93 +0,0 @@
|
||||
/**
|
||||
* Utilities and shared functionality for the build hooks.
|
||||
*/
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
|
||||
fs.ensureDirSync = function (dir) {
|
||||
if (!fs.existsSync(dir)) {
|
||||
dir.split(path.sep).reduce(function (currentPath, folder) {
|
||||
currentPath += folder + path.sep;
|
||||
if (!fs.existsSync(currentPath)) {
|
||||
fs.mkdirSync(currentPath);
|
||||
}
|
||||
return currentPath;
|
||||
}, "");
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Used to get the name of the application as defined in the config.xml.
|
||||
*
|
||||
* @param {object} context - The Cordova context.
|
||||
* @returns {string} The value of the name element in config.xml.
|
||||
*/
|
||||
getAppName: function (context) {
|
||||
var ConfigParser = context.requireCordovaModule("cordova-lib").configparser;
|
||||
var config = new ConfigParser("config.xml");
|
||||
return config.name();
|
||||
},
|
||||
|
||||
/**
|
||||
* The ID of the plugin; this should match the ID in plugin.xml.
|
||||
*/
|
||||
getPluginId: function () {
|
||||
return "com.huawei.cordovahmsgmscheckplugin";
|
||||
},
|
||||
|
||||
copyKey: function (platform) {
|
||||
for (var i = 0; i < platform.src.length; i++) {
|
||||
var file = platform.src[i];
|
||||
if (this.fileExists(file)) {
|
||||
try {
|
||||
var contents = fs.readFileSync(file).toString();
|
||||
|
||||
try {
|
||||
platform.dest.forEach(function (destinationPath) {
|
||||
var folder = destinationPath.substring(
|
||||
0,
|
||||
destinationPath.lastIndexOf("/")
|
||||
);
|
||||
fs.ensureDirSync(folder);
|
||||
fs.writeFileSync(destinationPath, contents);
|
||||
});
|
||||
} catch (e) {
|
||||
// skip
|
||||
}
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
getValue: function (config, name) {
|
||||
var value = config.match(
|
||||
new RegExp("<" + name + "(.*?)>(.*?)</" + name + ">", "i")
|
||||
);
|
||||
if (value && value[2]) {
|
||||
return value[2];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
|
||||
fileExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isFile();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
directoryExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isDirectory();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
};
|
||||
@ -1,88 +0,0 @@
|
||||
package com.huawei.cordovahmsgmscheckplugin;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
import com.huawei.hms.api.HuaweiApiAvailability;
|
||||
// import com.google.android.gms.common.GoogleApiAvailability;
|
||||
|
||||
import org.apache.cordova.CordovaInterface;
|
||||
import org.apache.cordova.CordovaInterfaceImpl;
|
||||
import org.apache.cordova.CordovaPlugin;
|
||||
import org.apache.cordova.CallbackContext;
|
||||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
||||
|
||||
/**
|
||||
* This class echoes a string called from JavaScript.
|
||||
*/
|
||||
public class CordovaHMSGMSCheckPlugin extends CordovaPlugin {
|
||||
|
||||
private static final String TAG = CordovaHMSGMSCheckPlugin.class.getSimpleName();
|
||||
private CallbackContext mCallbackContext;
|
||||
|
||||
@Override
|
||||
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
|
||||
switch (action) {
|
||||
case "isHmsAvailable":
|
||||
mCallbackContext = callbackContext;
|
||||
cordova.getThreadPool().execute(this::isHmsAvailable);
|
||||
return true;
|
||||
case "isGmsAvailable":
|
||||
// mCallbackContext = callbackContext;
|
||||
// cordova.getThreadPool().execute(this::isGmsAvailable);
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void isHmsAvailable() {
|
||||
boolean isAvailable = false;
|
||||
Context context = cordova.getContext();
|
||||
if (null != cordova.getContext()) {
|
||||
int result = HuaweiApiAvailability.getInstance().isHuaweiMobileServicesAvailable(context);
|
||||
isAvailable = (com.huawei.hms.api.ConnectionResult.SUCCESS == result);
|
||||
}
|
||||
Log.i("Cordova", "isHmsAvailable: " + isAvailable);
|
||||
String msg = "false";
|
||||
if(isAvailable){
|
||||
msg = "true";
|
||||
}
|
||||
outputCallbackContext(0, msg);
|
||||
}
|
||||
|
||||
// private void isGmsAvailable() {
|
||||
// boolean isAvailable = false;
|
||||
// Context context = cordova.getContext();
|
||||
// if (null != context) {
|
||||
// int result = GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(context);
|
||||
// isAvailable = (com.google.android.gms.common.ConnectionResult.SUCCESS == result);
|
||||
// }
|
||||
// Log.i("Cordova", "isGmsAvailable: " + isAvailable);
|
||||
// String msg = "false";
|
||||
// if(isAvailable){
|
||||
// msg = "true";
|
||||
// }
|
||||
// outputCallbackContext(0, msg);
|
||||
// }
|
||||
|
||||
/**
|
||||
* @param type 0-success,1-error
|
||||
* @param msg message
|
||||
*/
|
||||
private void outputCallbackContext(int type, String msg) {
|
||||
if (mCallbackContext != null) {
|
||||
switch (type) {
|
||||
case 0:
|
||||
mCallbackContext.success(msg);
|
||||
break;
|
||||
case 1:
|
||||
mCallbackContext.error(msg);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,29 +0,0 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.2.0'
|
||||
// classpath 'com.huawei.agconnect:agcp:1.2.0.300'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
}
|
||||
|
||||
cdvPluginPostBuildExtras.add({
|
||||
apply plugin: 'com.huawei.agconnect'
|
||||
})
|
||||
@ -1,29 +0,0 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plugin xmlns:android="http://schemas.android.com/apk/res/android" id="com.huawei.cordovahmslocationplugin"
|
||||
version="1.0.0"
|
||||
xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<name>CordovaHMSLocationPlugin</name>
|
||||
<js-module name="CordovaHMSLocationPlugin" src="www/CordovaHMSLocationPlugin.js">
|
||||
<clobbers target="cordova.plugins.CordovaHMSLocationPlugin" />
|
||||
</js-module>
|
||||
<platform name="android">
|
||||
<!-- hook for add maven repositories and agc plugin-->
|
||||
<hook src="scripts/android/after_plugin_install.js" type="after_plugin_install" />
|
||||
<hook src="scripts/android/before_plugin_uninstall.js" type="before_plugin_uninstall" />
|
||||
|
||||
<framework custom="true" src="src/android/build.gradle" type="gradleReference" />
|
||||
<!-- Location Kit dependency-->
|
||||
<framework src="com.huawei.hms:location:4.0.0.300" />
|
||||
<config-file parent="/*" target="res/xml/config.xml">
|
||||
<feature name="CordovaHMSLocationPlugin">
|
||||
<param name="android-package"
|
||||
value="com.huawei.cordovahmslocationplugin.CordovaHMSLocationPlugin" />
|
||||
</feature>
|
||||
</config-file>
|
||||
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
|
||||
<source-file src="src/android/CordovaHMSLocationPlugin.java"
|
||||
target-dir="src/com/huawei/cordovahmslocationplugin" />
|
||||
</platform>
|
||||
<!-- Script help to copy agconnect-services.json to right places-->
|
||||
<hook src="scripts/after_prepare.js" type="after_prepare" />
|
||||
</plugin>
|
||||
@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* This hook makes sure projects using [cordova-plugin-firebase](https://github.com/arnesson/cordova-plugin-firebase)
|
||||
* will build properly and have the required key files copied to the proper destinations when the app is build on Ionic Cloud using the package command.
|
||||
* Credits: https://github.com/arnesson.
|
||||
*/
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
var utilities = require("./lib/utilities");
|
||||
|
||||
var config = fs.readFileSync('config.xml').toString();
|
||||
var name = utilities.getValue(config, 'name');
|
||||
|
||||
var ANDROID_DIR = 'platforms/android';
|
||||
|
||||
var PLATFORM = {
|
||||
ANDROID: {
|
||||
dest: [
|
||||
ANDROID_DIR + '/app/agconnect-services.json'
|
||||
],
|
||||
src: [
|
||||
'agconnect-services.json'
|
||||
],
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = function (context) {
|
||||
//get platform from the context supplied by cordova
|
||||
var platforms = context.opts.platforms;
|
||||
// Copy key files to their platform specific folders
|
||||
if (platforms.indexOf('android') !== -1 && utilities.directoryExists(ANDROID_DIR)) {
|
||||
console.log('Preparing HMS Location Kit on Android');
|
||||
utilities.copyKey(PLATFORM.ANDROID);
|
||||
}
|
||||
};
|
||||
@ -1,9 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Modify the Gradle build file to add a task that will upload the debug symbols
|
||||
// at build time.
|
||||
helper.restoreRootBuildGradle();
|
||||
helper.modifyRootBuildGradle();
|
||||
};
|
||||
@ -1,7 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Remove the Gradle modifications that were added when the plugin was installed.
|
||||
helper.restoreRootBuildGradle();
|
||||
};
|
||||
@ -1,117 +0,0 @@
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
|
||||
function rootBuildGradleExists() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.existsSync(target);
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to read the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function readRootBuildGradle() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.readFileSync(target, "utf-8");
|
||||
}
|
||||
|
||||
/*
|
||||
* Added a dependency on 'com.google.gms' based on the position of the know 'com.android.tools.build' dependency in the build.gradle
|
||||
*/
|
||||
function addDependencies(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(/^(\s*)classpath 'com.android.tools.build(.*)/m);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary dependencies
|
||||
var agcDependency = whitespace + 'classpath \'com.huawei.agconnect:agcp:1.2.0.300\''
|
||||
|
||||
var modifiedLine = match[0] + '\n' + agcDependency;
|
||||
|
||||
// modify the actual line
|
||||
return buildGradle.replace(/^(\s*)classpath 'com.android.tools.build(.*)/m, modifiedLine);
|
||||
}
|
||||
|
||||
/*
|
||||
* Add 'google()' and Crashlytics to the repository repo list
|
||||
*/
|
||||
function addRepos(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary repo
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
var modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
|
||||
// modify the actual line
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
|
||||
// update the all projects grouping
|
||||
var allProjectsIndex = buildGradle.indexOf('allprojects');
|
||||
if (allProjectsIndex > 0) {
|
||||
// split the string on allprojects because jcenter is in both groups and we need to modify the 2nd instance
|
||||
var firstHalfOfFile = buildGradle.substring(0, allProjectsIndex);
|
||||
var secondHalfOfFile = buildGradle.substring(allProjectsIndex);
|
||||
|
||||
// Add google() to the allprojects section of the string
|
||||
match = secondHalfOfFile.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
secondHalfOfFile = secondHalfOfFile.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
|
||||
// recombine the modified line
|
||||
buildGradle = firstHalfOfFile + secondHalfOfFile;
|
||||
} else {
|
||||
// this should not happen, but if it does, we should try to add the dependency to the buildscript
|
||||
match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
}
|
||||
|
||||
return buildGradle;
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to write to the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function writeRootBuildGradle(contents) {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
fs.writeFileSync(target, contents);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
||||
modifyRootBuildGradle: function() {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// Add Google Play Services Dependency
|
||||
buildGradle = addDependencies(buildGradle);
|
||||
|
||||
// Add Google's Maven Repo
|
||||
buildGradle = addRepos(buildGradle);
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
},
|
||||
|
||||
restoreRootBuildGradle: function() {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// remove any lines we added
|
||||
buildGradle = buildGradle.replace(/(?:^|\r?\n)(.*)com.huawei.cordovahmspushplugin*?(?=$|\r?\n)/g, '');
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
}
|
||||
};
|
||||
@ -1,88 +0,0 @@
|
||||
/**
|
||||
* Utilities and shared functionality for the build hooks.
|
||||
*/
|
||||
var fs = require('fs');
|
||||
var path = require("path");
|
||||
|
||||
fs.ensureDirSync = function (dir) {
|
||||
if (!fs.existsSync(dir)) {
|
||||
dir.split(path.sep).reduce(function (currentPath, folder) {
|
||||
currentPath += folder + path.sep;
|
||||
if (!fs.existsSync(currentPath)) {
|
||||
fs.mkdirSync(currentPath);
|
||||
}
|
||||
return currentPath;
|
||||
}, '');
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Used to get the name of the application as defined in the config.xml.
|
||||
*
|
||||
* @param {object} context - The Cordova context.
|
||||
* @returns {string} The value of the name element in config.xml.
|
||||
*/
|
||||
getAppName: function (context) {
|
||||
var ConfigParser = context.requireCordovaModule("cordova-lib").configparser;
|
||||
var config = new ConfigParser("config.xml");
|
||||
return config.name();
|
||||
},
|
||||
|
||||
/**
|
||||
* The ID of the plugin; this should match the ID in plugin.xml.
|
||||
*/
|
||||
getPluginId: function () {
|
||||
return "com.huawei.cordovahmspushplugin";
|
||||
},
|
||||
|
||||
copyKey: function (platform) {
|
||||
for (var i = 0; i < platform.src.length; i++) {
|
||||
var file = platform.src[i];
|
||||
if (this.fileExists(file)) {
|
||||
try {
|
||||
var contents = fs.readFileSync(file).toString();
|
||||
|
||||
try {
|
||||
platform.dest.forEach(function (destinationPath) {
|
||||
var folder = destinationPath.substring(0, destinationPath.lastIndexOf('/'));
|
||||
fs.ensureDirSync(folder);
|
||||
fs.writeFileSync(destinationPath, contents);
|
||||
});
|
||||
} catch (e) {
|
||||
// skip
|
||||
}
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
getValue: function (config, name) {
|
||||
var value = config.match(new RegExp('<' + name + '(.*?)>(.*?)</' + name + '>', 'i'));
|
||||
if (value && value[2]) {
|
||||
return value[2]
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
},
|
||||
|
||||
fileExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isFile();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
directoryExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isDirectory();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -1,29 +0,0 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.2.0'
|
||||
classpath 'com.huawei.agconnect:agcp:1.2.0.300'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
}
|
||||
|
||||
cdvPluginPostBuildExtras.add({
|
||||
apply plugin: 'com.huawei.agconnect'
|
||||
})
|
||||
@ -1,38 +0,0 @@
|
||||
<?xml version='1.0' encoding='utf-8'?><!-- Plugin Id and Version-->
|
||||
<plugin xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
id="com.huawei.cordovahmspushplugin" version="1.0.0"
|
||||
xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
||||
<js-module name="CordovaHMSPushPlugin" src="www/CordovaHMSPushPlugin.js">
|
||||
<clobbers target="cordova.plugins.CordovaHMSPushPlugin" />
|
||||
</js-module>
|
||||
<!-- Plugin Name -->
|
||||
<name>CordovaHMSPushPlugin</name>
|
||||
<platform name="android">
|
||||
<!-- hook for add maven repositories and agc plugin-->
|
||||
<hook src="scripts/android/after_plugin_install.js" type="after_plugin_install" />
|
||||
<hook src="scripts/android/before_plugin_uninstall.js" type="before_plugin_uninstall" />
|
||||
|
||||
<framework custom="true" src="src/android/build.gradle" type="gradleReference" />
|
||||
<!-- Push Kit dependency-->
|
||||
<framework src="com.huawei.hms:push:4.0.0.300" />
|
||||
<config-file parent="/*" target="res/xml/config.xml">
|
||||
<feature name="CordovaHMSPushPlugin">
|
||||
<param name="android-package"
|
||||
value="com.huawei.cordovahmspushplugin.CordovaHMSPushPlugin" />
|
||||
</feature>
|
||||
</config-file>
|
||||
<config-file parent="/manifest/application" target="AndroidManifest.xml">
|
||||
<service android:exported="false" android:name="com.huawei.cordovahmspushplugin.MessageService">
|
||||
<intent-filter>
|
||||
<action android:name="com.huawei.push.action.MESSAGING_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
</config-file>
|
||||
<source-file src="src/android/CordovaHMSPushPlugin.java"
|
||||
target-dir="src/com/huawei/cordovahmspushplugin" />
|
||||
<source-file src="src/android/MessageService.java"
|
||||
target-dir="src/com/huawei/cordovahmspushplugin" />
|
||||
</platform>
|
||||
<!-- Script help to copy agconnect-services.json to right places-->
|
||||
<hook src="scripts/after_prepare.js" type="after_prepare" />
|
||||
</plugin>
|
||||
@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* This hook makes sure projects using [cordova-plugin-firebase](https://github.com/arnesson/cordova-plugin-firebase)
|
||||
* will build properly and have the required key files copied to the proper destinations when the app is build on Ionic Cloud using the package command.
|
||||
* Credits: https://github.com/arnesson.
|
||||
*/
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
var utilities = require("./lib/utilities");
|
||||
|
||||
var config = fs.readFileSync('config.xml').toString();
|
||||
var name = utilities.getValue(config, 'name');
|
||||
|
||||
var ANDROID_DIR = 'platforms/android';
|
||||
|
||||
var PLATFORM = {
|
||||
ANDROID: {
|
||||
dest: [
|
||||
ANDROID_DIR + '/app/agconnect-services.json'
|
||||
],
|
||||
src: [
|
||||
'agconnect-services.json'
|
||||
],
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = function (context) {
|
||||
//get platform from the context supplied by cordova
|
||||
var platforms = context.opts.platforms;
|
||||
// Copy key files to their platform specific folders
|
||||
if (platforms.indexOf('android') !== -1 && utilities.directoryExists(ANDROID_DIR)) {
|
||||
console.log('Preparing HMS Push Kit on Android');
|
||||
utilities.copyKey(PLATFORM.ANDROID);
|
||||
}
|
||||
};
|
||||
@ -1,9 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Modify the Gradle build file to add a task that will upload the debug symbols
|
||||
// at build time.
|
||||
helper.restoreRootBuildGradle();
|
||||
helper.modifyRootBuildGradle();
|
||||
};
|
||||
@ -1,7 +0,0 @@
|
||||
var helper = require('./helper');
|
||||
|
||||
module.exports = function(context) {
|
||||
|
||||
// Remove the Gradle modifications that were added when the plugin was installed.
|
||||
helper.restoreRootBuildGradle();
|
||||
};
|
||||
@ -1,117 +0,0 @@
|
||||
var fs = require("fs");
|
||||
var path = require("path");
|
||||
|
||||
function rootBuildGradleExists() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.existsSync(target);
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to read the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function readRootBuildGradle() {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
return fs.readFileSync(target, "utf-8");
|
||||
}
|
||||
|
||||
/*
|
||||
* Added a dependency on 'com.google.gms' based on the position of the know 'com.android.tools.build' dependency in the build.gradle
|
||||
*/
|
||||
function addDependencies(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(/^(\s*)classpath 'com.android.tools.build(.*)/m);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary dependencies
|
||||
var agcDependency = whitespace + 'classpath \'com.huawei.agconnect:agcp:1.2.0.300\''
|
||||
|
||||
var modifiedLine = match[0] + '\n' + agcDependency;
|
||||
|
||||
// modify the actual line
|
||||
return buildGradle.replace(/^(\s*)classpath 'com.android.tools.build(.*)/m, modifiedLine);
|
||||
}
|
||||
|
||||
/*
|
||||
* Add 'google()' and Crashlytics to the repository repo list
|
||||
*/
|
||||
function addRepos(buildGradle) {
|
||||
// find the known line to match
|
||||
var match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var whitespace = match[1];
|
||||
|
||||
// modify the line to add the necessary repo
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
var modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
|
||||
// modify the actual line
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
|
||||
// update the all projects grouping
|
||||
var allProjectsIndex = buildGradle.indexOf('allprojects');
|
||||
if (allProjectsIndex > 0) {
|
||||
// split the string on allprojects because jcenter is in both groups and we need to modify the 2nd instance
|
||||
var firstHalfOfFile = buildGradle.substring(0, allProjectsIndex);
|
||||
var secondHalfOfFile = buildGradle.substring(allProjectsIndex);
|
||||
|
||||
// Add google() to the allprojects section of the string
|
||||
match = secondHalfOfFile.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
secondHalfOfFile = secondHalfOfFile.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
|
||||
// recombine the modified line
|
||||
buildGradle = firstHalfOfFile + secondHalfOfFile;
|
||||
} else {
|
||||
// this should not happen, but if it does, we should try to add the dependency to the buildscript
|
||||
match = buildGradle.match(/^(\s*)jcenter\(\)/m);
|
||||
var huaweiMavenRepo = whitespace + 'maven { url \'http://developer.huawei.com/repo/\' }'
|
||||
modifiedLine = match[0] + '\n' + huaweiMavenRepo;
|
||||
// modify the part of the string that is after 'allprojects'
|
||||
buildGradle = buildGradle.replace(/^(\s*)jcenter\(\)/m, modifiedLine);
|
||||
}
|
||||
|
||||
return buildGradle;
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to write to the build.gradle that sits at the root of the project
|
||||
*/
|
||||
function writeRootBuildGradle(contents) {
|
||||
var target = path.join("platforms", "android", "build.gradle");
|
||||
fs.writeFileSync(target, contents);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
||||
modifyRootBuildGradle: function() {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// Add Google Play Services Dependency
|
||||
buildGradle = addDependencies(buildGradle);
|
||||
|
||||
// Add Google's Maven Repo
|
||||
buildGradle = addRepos(buildGradle);
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
},
|
||||
|
||||
restoreRootBuildGradle: function() {
|
||||
// be defensive and don't crash if the file doesn't exist
|
||||
if (!rootBuildGradleExists) {
|
||||
return;
|
||||
}
|
||||
|
||||
var buildGradle = readRootBuildGradle();
|
||||
|
||||
// remove any lines we added
|
||||
buildGradle = buildGradle.replace(/(?:^|\r?\n)(.*)com.huawei.cordovahmspushplugin*?(?=$|\r?\n)/g, '');
|
||||
|
||||
writeRootBuildGradle(buildGradle);
|
||||
}
|
||||
};
|
||||
@ -1,88 +0,0 @@
|
||||
/**
|
||||
* Utilities and shared functionality for the build hooks.
|
||||
*/
|
||||
var fs = require('fs');
|
||||
var path = require("path");
|
||||
|
||||
fs.ensureDirSync = function (dir) {
|
||||
if (!fs.existsSync(dir)) {
|
||||
dir.split(path.sep).reduce(function (currentPath, folder) {
|
||||
currentPath += folder + path.sep;
|
||||
if (!fs.existsSync(currentPath)) {
|
||||
fs.mkdirSync(currentPath);
|
||||
}
|
||||
return currentPath;
|
||||
}, '');
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Used to get the name of the application as defined in the config.xml.
|
||||
*
|
||||
* @param {object} context - The Cordova context.
|
||||
* @returns {string} The value of the name element in config.xml.
|
||||
*/
|
||||
getAppName: function (context) {
|
||||
var ConfigParser = context.requireCordovaModule("cordova-lib").configparser;
|
||||
var config = new ConfigParser("config.xml");
|
||||
return config.name();
|
||||
},
|
||||
|
||||
/**
|
||||
* The ID of the plugin; this should match the ID in plugin.xml.
|
||||
*/
|
||||
getPluginId: function () {
|
||||
return "com.huawei.cordovahmspushplugin";
|
||||
},
|
||||
|
||||
copyKey: function (platform) {
|
||||
for (var i = 0; i < platform.src.length; i++) {
|
||||
var file = platform.src[i];
|
||||
if (this.fileExists(file)) {
|
||||
try {
|
||||
var contents = fs.readFileSync(file).toString();
|
||||
|
||||
try {
|
||||
platform.dest.forEach(function (destinationPath) {
|
||||
var folder = destinationPath.substring(0, destinationPath.lastIndexOf('/'));
|
||||
fs.ensureDirSync(folder);
|
||||
fs.writeFileSync(destinationPath, contents);
|
||||
});
|
||||
} catch (e) {
|
||||
// skip
|
||||
}
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
getValue: function (config, name) {
|
||||
var value = config.match(new RegExp('<' + name + '(.*?)>(.*?)</' + name + '>', 'i'));
|
||||
if (value && value[2]) {
|
||||
return value[2]
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
},
|
||||
|
||||
fileExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isFile();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
directoryExists: function (path) {
|
||||
try {
|
||||
return fs.statSync(path).isDirectory();
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -1,112 +0,0 @@
|
||||
package com.huawei.cordovahmspushplugin;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.huawei.agconnect.config.AGConnectServicesConfig;
|
||||
import com.huawei.hms.aaid.HmsInstanceId;
|
||||
import com.huawei.hms.push.HmsMessaging;
|
||||
import com.huawei.hmf.tasks.OnCompleteListener;
|
||||
import com.huawei.hmf.tasks.Task;
|
||||
|
||||
import org.apache.cordova.CallbackContext;
|
||||
import org.apache.cordova.CordovaPlugin;
|
||||
import org.apache.cordova.PluginResult;
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONException;
|
||||
|
||||
/**
|
||||
* This class echoes a string called from JavaScript.
|
||||
*/
|
||||
public class CordovaHMSPushPlugin extends CordovaPlugin {
|
||||
|
||||
private static final String TAG = CordovaHMSPushPlugin.class.getSimpleName();
|
||||
|
||||
private static CallbackContext mCallbackContext;
|
||||
private static CallbackContext mTokenCallback;
|
||||
|
||||
@Override
|
||||
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
|
||||
switch (action) {
|
||||
case "getToken":
|
||||
this.getToken(callbackContext);
|
||||
return true;
|
||||
case "getMessageCallback":
|
||||
Log.d(TAG, "getMessageCallback");
|
||||
mCallbackContext = callbackContext;
|
||||
return true;
|
||||
case "subscribeTopic":
|
||||
Log.d(TAG, "subscribeTopic");
|
||||
try {
|
||||
String topic = args.getString(0);
|
||||
this.subscribeTopic(topic, callbackContext);
|
||||
} catch (JSONException e) {
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static void returnMessage(String message) {
|
||||
if (mCallbackContext != null) {
|
||||
Log.d(TAG, "returnMessage");
|
||||
PluginResult result = new PluginResult(PluginResult.Status.OK, message);
|
||||
result.setKeepCallback(true);
|
||||
mCallbackContext.sendPluginResult(result);
|
||||
}
|
||||
}
|
||||
|
||||
public static void returnToken(String token) {
|
||||
if (mTokenCallback != null) {
|
||||
mTokenCallback.success(token);
|
||||
mTokenCallback = null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get push token
|
||||
*/
|
||||
private void getToken(CallbackContext callbackContext) {
|
||||
Log.i(TAG, "get token: begin");
|
||||
|
||||
try {
|
||||
String appId = AGConnectServicesConfig.fromContext(cordova.getContext()).getString("client/app_id");
|
||||
String pushToken = HmsInstanceId.getInstance(cordova.getContext()).getToken(appId, "HCM");
|
||||
if (!TextUtils.isEmpty(pushToken)) {
|
||||
Log.i(TAG, "get token:" + pushToken);
|
||||
callbackContext.success(pushToken);
|
||||
}else {
|
||||
mTokenCallback = callbackContext;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "getToken Failed, " + e);
|
||||
callbackContext.error("getToken Failed, error : " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public void subscribeTopic(String topic, final CallbackContext callBack) {
|
||||
// callBack.success("user subscribe to topic named as: "+ topic);
|
||||
if (topic == null || topic.toString().equals("")) {
|
||||
callBack.error("topic is empty!");
|
||||
return;
|
||||
}
|
||||
try {
|
||||
HmsMessaging.getInstance(cordova.getContext()).subscribe(topic).
|
||||
addOnCompleteListener(new OnCompleteListener<Void>() {
|
||||
@Override
|
||||
public void onComplete(Task<Void> task) {
|
||||
if (task.isSuccessful()) {
|
||||
callBack.success("user subscribe to topic: "+ topic);
|
||||
} else {
|
||||
callBack.error("getToken Failed, error : " + task.getException().getMessage());
|
||||
}
|
||||
}
|
||||
});
|
||||
} catch (Exception e) {
|
||||
callBack.error("getToken Failed, error : " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@ -1,32 +0,0 @@
|
||||
package com.huawei.cordovahmspushplugin;
|
||||
|
||||
import com.huawei.cordovahmspushplugin.CordovaHMSPushPlugin;
|
||||
import com.huawei.hms.push.HmsMessageService;
|
||||
import com.huawei.hms.push.RemoteMessage;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
public class MessageService extends HmsMessageService {
|
||||
|
||||
private static final String TAG = MessageService.class.getSimpleName();
|
||||
|
||||
@Override
|
||||
public void onMessageReceived(RemoteMessage remoteMessage) {
|
||||
super.onMessageReceived(remoteMessage);
|
||||
Log.d(TAG, "onMessageReceived");
|
||||
if (remoteMessage != null) {
|
||||
String message = remoteMessage.getData();
|
||||
Log.d(TAG, message);
|
||||
CordovaHMSPushPlugin.returnMessage(message);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onNewToken(String s) {
|
||||
super.onNewToken(s);
|
||||
if (s != null) {
|
||||
Log.d(TAG, "token:" + s);
|
||||
CordovaHMSPushPlugin.returnToken(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,29 +0,0 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.2.0'
|
||||
classpath 'com.huawei.agconnect:agcp:1.2.0.300'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
// huawei maven
|
||||
maven { url 'http://developer.huawei.com/repo/' }
|
||||
}
|
||||
}
|
||||
|
||||
cdvPluginPostBuildExtras.add({
|
||||
apply plugin: 'com.huawei.agconnect'
|
||||
})
|
||||
@ -0,0 +1,29 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { NotificationCenterPage } from './notification-center.page';
|
||||
import { DetailComponent } from './notification-detail/detail.component';
|
||||
import { HmgCommonModule } from '../hmg-common/hmg-common.module';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: DetailComponent
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
HmgCommonModule,
|
||||
RouterModule.forChild(routes)
|
||||
],
|
||||
declarations: [NotificationCenterPage, DetailComponent]
|
||||
})
|
||||
export class NotificationCenterPageModule { }
|
||||
@ -0,0 +1,6 @@
|
||||
|
||||
|
||||
|
||||
<ion-content>
|
||||
<ion-router-outlet></ion-router-outlet>
|
||||
</ion-content>
|
||||
@ -0,0 +1,27 @@
|
||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { NotificationCenterPage } from './notification-center.page';
|
||||
|
||||
describe('NotificationCenterPage', () => {
|
||||
let component: NotificationCenterPage;
|
||||
let fixture: ComponentFixture<NotificationCenterPage>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ NotificationCenterPage ],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(NotificationCenterPage);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-notification-center',
|
||||
templateUrl: './notification-center.page.html',
|
||||
styleUrls: ['./notification-center.page.scss'],
|
||||
})
|
||||
export class NotificationCenterPage implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
<ion-content class="item-background" padding>
|
||||
<div class="close-icon">
|
||||
<img src="assets/imgs/close.svg" (click)="backLogin()" />
|
||||
</div>
|
||||
<ion-grid>
|
||||
<ion-row class="ion-justify-content-center">
|
||||
<ion-col [size]="11">
|
||||
<p>{{data.image_Text}}</p>
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
<ion-row class="ion-justify-content-center">
|
||||
<ion-col [size]="11">
|
||||
<img [src]="data.image_URL" class="full-width">
|
||||
</ion-col>
|
||||
</ion-row>
|
||||
</ion-grid>
|
||||
|
||||
<page-trailer></page-trailer>
|
||||
</ion-content>
|
||||
@ -0,0 +1,84 @@
|
||||
.vertical_space {
|
||||
height: 0.5cm;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 0.38cm;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.info-icon ion-icon {
|
||||
font-size: 90px;
|
||||
margin: 10px auto;
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
color: var(--ion-color-danger);
|
||||
}
|
||||
|
||||
.info-icon h1 {
|
||||
margin: auto;
|
||||
font-size: 22px;
|
||||
text-align: center;
|
||||
margin-top: 10%;
|
||||
}
|
||||
|
||||
.info-icon {
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
margin: 20px;
|
||||
margin-top: 15%;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.info-icon .line {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: #ccddcc;
|
||||
margin: 15px auto;
|
||||
}
|
||||
|
||||
.info-icon .instruction p {
|
||||
display: block;
|
||||
margin: 0px;
|
||||
margin-top: 7%;
|
||||
color: #000;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.info-icon b {
|
||||
bottom: 11px;
|
||||
margin: 18px;
|
||||
color: var(--ion-color-danger);
|
||||
}
|
||||
|
||||
.instruction b {
|
||||
color: var(--ion-color-danger);
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
.stop-icon {
|
||||
display: flex;
|
||||
margin: 10px auto;
|
||||
width: 45%;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
p.otherwise {
|
||||
font-size: 20px !important;
|
||||
}
|
||||
|
||||
.close-icon {
|
||||
position: relative;
|
||||
height: 60px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.close-icon img {
|
||||
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DetailComponent } from './detail.component';
|
||||
|
||||
describe('DetailComponent', () => {
|
||||
let component: DetailComponent;
|
||||
let fixture: ComponentFixture<DetailComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ DetailComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(DetailComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,42 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { NotificationModel } from 'src/app/hmg-common/services/push/models/notification.model';
|
||||
import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service';
|
||||
import { SharedDataService } from 'src/app/hmg-common/services/shared-data-service/shared-data.service';
|
||||
import { CommonService } from 'src/app/hmg-common/services/common/common.service';
|
||||
// import { NotificationsCenterService } from '../service/notifications-center.service';
|
||||
import { Route, Router, ActivatedRoute, ActivationEnd } from '@angular/router';
|
||||
import { SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
|
||||
|
||||
@Component({
|
||||
selector: 'app-detail',
|
||||
templateUrl: './detail.component.html',
|
||||
styleUrls: ['./detail.component.scss']
|
||||
})
|
||||
export class DetailComponent implements OnInit {
|
||||
|
||||
public notification: NotificationModel;
|
||||
public video_link: string;
|
||||
public trustedVideoUrl: SafeResourceUrl;
|
||||
public direction: any;
|
||||
public data: any;
|
||||
constructor(
|
||||
public cs: CommonService,
|
||||
public ts: TranslatorService,
|
||||
public sharedData: SharedDataService,
|
||||
// public notifyService: NotificationsCenterService,
|
||||
public router: Router,
|
||||
private domSanitizer: DomSanitizer,
|
||||
public route: ActivatedRoute
|
||||
) {
|
||||
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.direction = TranslatorService.getCurrentDirection();
|
||||
|
||||
this.data = this.sharedData.getSharedData(NotificationModel.SHARED_DATA, true);
|
||||
}
|
||||
backLogin() {
|
||||
this.cs.openLogin();
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
@ -1,6 +0,0 @@
|
||||
-----BEGIN PRIVATE KEY-----
|
||||
MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQg+oBl9YdOiMRXfQZe
|
||||
nIe6tR1tojoOvvcohNJmJtH+SsagCgYIKoZIzj0DAQehRANCAATDY9E82MAgMI/g
|
||||
bKF1t4zLHJ1Yt9uoOnedNYsfyZLhh3l3ZyXRj02uDXz04AsNbNFjkLJXPc4xY9ad
|
||||
+A4rY70x
|
||||
-----END PRIVATE KEY-----
|
||||
Loading…
Reference in New Issue