From 357d4417fd961f29c0e4c9d81719a05d2878d528 Mon Sep 17 00:00:00 2001
From: Benoit Lavenier <benoit.lavenier@e-is.pro>
Date: Fri, 14 Aug 2020 13:12:30 +0200
Subject: [PATCH] [enh] Cordova build: execute copy build files, AFTER
 cordova-plugin-androidx-adapter (inside ths hook before_compile)

---
 config.xml                      | 16 ++++++++--------
 gulpfile.js                     |  8 ++++++++
 scripts/hooks/before_compile.js | 25 +++++++++++++++++++++++++
 3 files changed, 41 insertions(+), 8 deletions(-)
 create mode 100644 scripts/hooks/before_compile.js

diff --git a/config.xml b/config.xml
index 15fe32f64..08ae45569 100644
--- a/config.xml
+++ b/config.xml
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='utf-8'?>
-<widget android-versionCode="106070" id="fr.duniter.cesium" ios-CFBundleIdentifier="org.duniter.cesium" version="1.6.7" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
+<widget android-versionCode="106080" id="fr.duniter.cesium" ios-CFBundleIdentifier="org.duniter.cesium" version="1.6.8" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
     <name>Cesium</name>
     <description>
     An simple App for Duniter wallet
@@ -15,13 +15,13 @@
     <allow-intent href="sms:*" />
     <allow-intent href="mailto:*" />
     <allow-intent href="geo:*" />
-    <allow-intent href="june://*/*" />
-    <allow-intent href="web+june://*/*" />
+    <allow-intent href="june:*" />
+    <allow-intent href="web+june:*" />
     <allow-navigation href="http://*/*" />
     <allow-navigation href="https://*/*" />
     <allow-navigation href="data:*" />
-    <allow-navigation href="june://*/*" />
-    <allow-navigation href="web+june://*/*" />
+    <allow-navigation href="june:*" />
+    <allow-navigation href="web+june:*" />
     <icon src="www/img/logo_96px.png" />
     <preference name="webviewbounce" value="false" />
     <preference name="UIWebViewBounce" value="false" />
@@ -38,7 +38,9 @@
     <preference name="StatusBarBackgroundColor" value="#000" />
     <preference name="StatusBarStyle" value="lightcontent" />
     <preference name="loadUrlTimeoutValue" value="700000" />
-    <allow-navigation href="*" />
+    <hook src="scripts/hooks/before_prepare.js" type="before_prepare" />
+    <hook src="scripts/hooks/after_prepare.js" type="after_prepare" />
+    <hook src="scripts/hooks/before_compile.js" type="before_compile" />
     <feature name="StatusBar">
         <param name="ios-package" onload="true" value="CDVStatusBar" />
     </feature>
@@ -58,8 +60,6 @@
         <preference name="AndroidLaunchMode" value="singleTask" />
         <preference name="android-minSdkVersion" value="16" />
         <preference name="android-targetSdkVersion" value="29" />
-        <hook src="scripts/hooks/before_prepare.js" type="before_prepare" />
-        <hook src="scripts/hooks/after_prepare.js" type="after_prepare" />
         <icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" />
         <icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" />
         <icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" />
diff --git a/gulpfile.js b/gulpfile.js
index 364e9f9aa..d70691c76 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1439,6 +1439,14 @@ const cdvAfterPrepare = gulp.series(
 );
 exports.cdvAfterPrepare = cdvAsHook(cdvAfterPrepare);
 
+const cdvBeforeCompile = gulp.series(
+  cdvCleanUnusedDirectories,
+  cdvCopyBuildFiles,
+  cdvAndroidManifest,
+  cdvAndroidCheckSigning
+);
+exports.cdvBeforeCompile = cdvAsHook(cdvBeforeCompile);
+
 exports.default = gulp.series(appConfig, build);
 exports.serveBefore = gulp.series(build, appAndPluginWatch);
 exports['ionic:serve:before'] = exports.serveBefore; // Alias need need by @ionic/cli
diff --git a/scripts/hooks/before_compile.js b/scripts/hooks/before_compile.js
new file mode 100644
index 000000000..facefab97
--- /dev/null
+++ b/scripts/hooks/before_compile.js
@@ -0,0 +1,25 @@
+#!/usr/bin/env node
+
+const gulp = require('gulp'),
+  path = require("path"),
+  log = require('fancy-log'),
+  colors = require('ansi-colors');
+
+module.exports = function(context) {
+  const now = Date.now();
+  log("Executing '" + colors.cyan("before_compile") + "' hook...");
+
+  const projectRoot = context && context.opts && context.opts.projectRoot || '.';
+  const platforms = context && context.opts && context.opts.platforms || ['android'];
+  const gulpFile = require(path.join(projectRoot, 'gulpfile'));
+
+  if (!projectRoot || !platforms || !gulpFile) return; // Skip
+
+  return Promise.all(platforms
+    .map(platform => {
+      return new Promise(done => gulpFile.cdvBeforeCompile(done, projectRoot, platform.trim().toLowerCase()));
+    }))
+    .then(() => {
+      log(colors.grey("Hook 'before_compile' finished in " + (Date.now() - now) + 'ms'));
+    });
+}
-- 
GitLab