@capgo/capacitor-updater 5.50.2 → 5.51.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CapgoCapacitorUpdater.podspec +1 -1
- package/Package.swift +3 -2
- package/README.md +53 -48
- package/android/build.gradle +1 -0
- package/android/src/main/java/ee/forgr/capacitor_updater/AppLifecycleObserver.java +29 -2
- package/android/src/main/java/ee/forgr/capacitor_updater/BundleInfo.java +7 -3
- package/android/src/main/java/ee/forgr/capacitor_updater/BundleStatus.java +1 -0
- package/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +452 -139
- package/android/src/main/java/ee/forgr/capacitor_updater/CapgoUpdater.java +1354 -412
- package/android/src/main/java/ee/forgr/capacitor_updater/CryptoCipher.java +102 -31
- package/android/src/main/java/ee/forgr/capacitor_updater/DataManager.java +23 -7
- package/android/src/main/java/ee/forgr/capacitor_updater/DelayCondition.java +2 -2
- package/android/src/main/java/ee/forgr/capacitor_updater/DownloadService.java +540 -224
- package/android/src/main/java/ee/forgr/capacitor_updater/DownloadWorkerManager.java +103 -3
- package/android/src/main/java/ee/forgr/capacitor_updater/InternalUtils.java +1 -1
- package/android/src/main/java/ee/forgr/capacitor_updater/ShakeMenu.java +131 -145
- package/dist/docs.json +32 -8
- package/dist/esm/definitions.d.ts +41 -17
- package/dist/esm/definitions.js.map +1 -1
- package/ios/Sources/CapacitorUpdaterPlugin/AES.swift +124 -0
- package/ios/Sources/CapacitorUpdaterPlugin/BundleInfo.swift +9 -1
- package/ios/Sources/CapacitorUpdaterPlugin/BundleStatus.swift +3 -0
- package/ios/Sources/CapacitorUpdaterPlugin/CapacitorUpdaterPlugin.swift +787 -92
- package/ios/Sources/CapacitorUpdaterPlugin/CapgoUpdater.swift +1014 -268
- package/ios/Sources/CapacitorUpdaterPlugin/CryptoCipher.swift +49 -31
- package/ios/Sources/CapacitorUpdaterPlugin/ShakeMenu.swift +44 -20
- package/ios/Sources/CapacitorUpdaterPlugin/WebViewStatsReporter.swift +28 -0
- package/package.json +12 -7
|
@@ -50,6 +50,7 @@ import com.google.android.play.core.install.model.InstallStatus;
|
|
|
50
50
|
import com.google.android.play.core.install.model.UpdateAvailability;
|
|
51
51
|
import io.github.g00fy2.versioncompare.Version;
|
|
52
52
|
import java.io.ByteArrayOutputStream;
|
|
53
|
+
import java.io.File;
|
|
53
54
|
import java.io.IOException;
|
|
54
55
|
import java.io.InputStream;
|
|
55
56
|
import java.net.HttpURLConnection;
|
|
@@ -68,6 +69,7 @@ import java.util.Set;
|
|
|
68
69
|
import java.util.TimeZone;
|
|
69
70
|
import java.util.Timer;
|
|
70
71
|
import java.util.TimerTask;
|
|
72
|
+
import java.util.concurrent.CountDownLatch;
|
|
71
73
|
import java.util.concurrent.Phaser;
|
|
72
74
|
import java.util.concurrent.Semaphore;
|
|
73
75
|
import java.util.concurrent.TimeUnit;
|
|
@@ -103,6 +105,8 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
103
105
|
private static final String CHANNEL_URL_PREF_KEY = "CapacitorUpdater.channelUrl";
|
|
104
106
|
private static final String DEFAULT_CHANNEL_PREF_KEY = "CapacitorUpdater.defaultChannel";
|
|
105
107
|
private static final String PREVIEW_SESSION_PREF_KEY = "CapacitorUpdater.previewSession";
|
|
108
|
+
private static final String DEFAULT_CHANNEL_INSTALL_MARKER_PREF_KEY = "CapacitorUpdater.defaultChannelInstallMarkerCreated";
|
|
109
|
+
private static final String DEFAULT_CHANNEL_INSTALL_MARKER_FILE = "CapacitorUpdater.defaultChannelInstallMarker";
|
|
106
110
|
private static final String PREVIEW_PREVIOUS_SHAKE_MENU_PREF_KEY = "CapacitorUpdater.previewPreviousShakeMenu";
|
|
107
111
|
private static final String PREVIEW_PREVIOUS_SHAKE_CHANNEL_SELECTOR_PREF_KEY = "CapacitorUpdater.previewPreviousShakeChannelSelector";
|
|
108
112
|
private static final String PREVIEW_PREVIOUS_NEXT_BUNDLE_PREF_KEY = "CapacitorUpdater.previewPreviousNextBundle";
|
|
@@ -142,7 +146,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
142
146
|
static final int APPLICATION_EXIT_REASON_USER_REQUESTED = 10;
|
|
143
147
|
static final int APPLICATION_EXIT_REASON_DEPENDENCY_DIED = 12;
|
|
144
148
|
|
|
145
|
-
private final String pluginVersion = "5.
|
|
149
|
+
private final String pluginVersion = "5.51.15";
|
|
146
150
|
private static final String DELAY_CONDITION_PREFERENCES = "";
|
|
147
151
|
|
|
148
152
|
private SharedPreferences.Editor editor;
|
|
@@ -151,6 +155,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
151
155
|
protected CapgoUpdater implementation;
|
|
152
156
|
private Boolean persistCustomId = false;
|
|
153
157
|
private Boolean persistModifyUrl = false;
|
|
158
|
+
private Boolean persistDefaultChannelOnReinstall = true;
|
|
154
159
|
|
|
155
160
|
private Integer appReadyTimeout = 10000;
|
|
156
161
|
private Integer periodCheckDelay = 0;
|
|
@@ -215,6 +220,9 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
215
220
|
|
|
216
221
|
private volatile Thread backgroundDownloadTask;
|
|
217
222
|
private volatile Thread appReadyCheck;
|
|
223
|
+
// When true, sendReadyToJs should wait for notifyAppReady before hiding splash.
|
|
224
|
+
private volatile boolean pendingNotifyAppReadyWait = false;
|
|
225
|
+
private volatile int pendingNotifyAppReadyPhase = -1;
|
|
218
226
|
private volatile long downloadStartTimeMs = 0;
|
|
219
227
|
private static final long DOWNLOAD_TIMEOUT_MS = 600000; // 10 minute timeout
|
|
220
228
|
|
|
@@ -227,8 +235,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
227
235
|
|
|
228
236
|
// Lock to ensure cleanup completes before downloads start
|
|
229
237
|
private final Object cleanupLock = new Object();
|
|
238
|
+
private volatile CountDownLatch cleanupLatch = new CountDownLatch(0);
|
|
230
239
|
private volatile boolean cleanupComplete = false;
|
|
231
240
|
private volatile Thread cleanupThread = null;
|
|
241
|
+
private volatile boolean defaultChannelCleanupMustRetry = false;
|
|
232
242
|
|
|
233
243
|
private int lastNotifiedStatPercent = 0;
|
|
234
244
|
|
|
@@ -236,6 +246,12 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
236
246
|
|
|
237
247
|
private ShakeMenu shakeMenu;
|
|
238
248
|
private final Handler mainHandler = new Handler(Looper.getMainLooper());
|
|
249
|
+
private final long launchStartedAtMs = System.currentTimeMillis();
|
|
250
|
+
private volatile long webViewPageStartedAtMs = 0;
|
|
251
|
+
private volatile boolean launchStartReported = false;
|
|
252
|
+
private volatile boolean launchReadyReported = false;
|
|
253
|
+
private volatile boolean launchTimeoutReported = false;
|
|
254
|
+
private final Object launchReportLock = new Object();
|
|
239
255
|
private FrameLayout splashscreenLoaderOverlay;
|
|
240
256
|
private Runnable splashscreenTimeoutRunnable;
|
|
241
257
|
private FrameLayout previewTransitionLoaderOverlay;
|
|
@@ -268,6 +284,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
268
284
|
// App lifecycle observer using ProcessLifecycleOwner for reliable foreground/background detection
|
|
269
285
|
private AppLifecycleObserver appLifecycleObserver;
|
|
270
286
|
|
|
287
|
+
private boolean isProcessLifecycleObserverActive() {
|
|
288
|
+
return this.appLifecycleObserver != null && this.appLifecycleObserver.isRegistered();
|
|
289
|
+
}
|
|
290
|
+
|
|
271
291
|
// Play Store In-App Updates
|
|
272
292
|
private AppUpdateManager appUpdateManager;
|
|
273
293
|
private AppUpdateInfo cachedAppUpdateInfo;
|
|
@@ -747,6 +767,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
747
767
|
|
|
748
768
|
this.persistCustomId = this.getConfig().getBoolean("persistCustomId", false);
|
|
749
769
|
this.persistModifyUrl = this.getConfig().getBoolean("persistModifyUrl", false);
|
|
770
|
+
this.persistDefaultChannelOnReinstall = this.getConfig().getBoolean("persistDefaultChannelOnReinstall", true);
|
|
750
771
|
this.allowSetDefaultChannel = this.getConfig().getBoolean("allowSetDefaultChannel", true);
|
|
751
772
|
this.implementation.setPublicKey(this.getConfig().getString("publicKey", ""));
|
|
752
773
|
// Log public key prefix if encryption is enabled
|
|
@@ -773,6 +794,35 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
773
794
|
}
|
|
774
795
|
}
|
|
775
796
|
|
|
797
|
+
final boolean resetWhenUpdate = this.getConfig().getBoolean("resetWhenUpdate", true);
|
|
798
|
+
final boolean nativeBuildVersionChanged = this.hasNativeBuildVersionChanged();
|
|
799
|
+
final boolean defaultChannelPersistenceDisabled = !Boolean.TRUE.equals(this.persistDefaultChannelOnReinstall);
|
|
800
|
+
final boolean restoredReinstall = defaultChannelPersistenceDisabled && this.isRestoredReinstall();
|
|
801
|
+
boolean installMarkerCanBePrepared = true;
|
|
802
|
+
if (
|
|
803
|
+
shouldClearPersistedDefaultChannel(
|
|
804
|
+
Boolean.TRUE.equals(this.persistDefaultChannelOnReinstall),
|
|
805
|
+
resetWhenUpdate,
|
|
806
|
+
nativeBuildVersionChanged,
|
|
807
|
+
restoredReinstall
|
|
808
|
+
)
|
|
809
|
+
) {
|
|
810
|
+
installMarkerCanBePrepared = clearPersistedDefaultChannel(this.editor);
|
|
811
|
+
if (installMarkerCanBePrepared) {
|
|
812
|
+
logger.info("Cleared persisted defaultChannel because reinstall persistence is disabled");
|
|
813
|
+
} else {
|
|
814
|
+
logger.warn("Cannot durably clear persisted defaultChannel");
|
|
815
|
+
this.defaultChannelCleanupMustRetry = true;
|
|
816
|
+
if (!invalidateDefaultChannelInstallMarker(this.defaultChannelInstallMarker())) {
|
|
817
|
+
logger.warn("Cannot invalidate default channel install marker for cleanup retry");
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
if (defaultChannelPersistenceDisabled && installMarkerCanBePrepared) {
|
|
822
|
+
this.prepareDefaultChannelInstallMarker();
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
final String configDefaultChannel = this.getConfig().getString("defaultChannel", "");
|
|
776
826
|
// Load defaultChannel: first try from persistent storage (set via setChannel), then fall back to config
|
|
777
827
|
if (this.prefs.contains(DEFAULT_CHANNEL_PREF_KEY)) {
|
|
778
828
|
final String storedDefaultChannel = this.prefs.getString(DEFAULT_CHANNEL_PREF_KEY, "");
|
|
@@ -780,20 +830,22 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
780
830
|
this.implementation.defaultChannel = storedDefaultChannel;
|
|
781
831
|
logger.info("Loaded persisted defaultChannel from setChannel()");
|
|
782
832
|
} else {
|
|
783
|
-
this.implementation.defaultChannel =
|
|
833
|
+
this.implementation.defaultChannel = configDefaultChannel;
|
|
784
834
|
}
|
|
785
835
|
} else {
|
|
786
|
-
this.implementation.defaultChannel =
|
|
836
|
+
this.implementation.defaultChannel = configDefaultChannel;
|
|
787
837
|
}
|
|
788
838
|
|
|
789
839
|
this.periodCheckDelay = normalizedPeriodCheckDelayMs(this.getConfig().getInt("periodCheckDelay", 0));
|
|
790
840
|
|
|
791
841
|
this.implementation.documentsDir = this.getContext().getFilesDir();
|
|
842
|
+
this.implementation.noBackupDir = this.getContext().getNoBackupFilesDir();
|
|
792
843
|
this.implementation.prefs = this.prefs;
|
|
793
844
|
this.implementation.editor = this.editor;
|
|
794
845
|
this.implementation.versionOs = Build.VERSION.RELEASE;
|
|
795
846
|
// Use DeviceIdHelper to get or create device ID that persists across reinstalls
|
|
796
847
|
this.implementation.deviceID = DeviceIdHelper.getOrCreateDeviceId(this.getContext(), this.prefs);
|
|
848
|
+
this.implementation.restorePendingStats();
|
|
797
849
|
|
|
798
850
|
// Update User-Agent for shared OkHttpClient with OS version
|
|
799
851
|
DownloadService.updateUserAgent(this.implementation.appId, this.pluginVersion, this.implementation.versionOs);
|
|
@@ -807,6 +859,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
807
859
|
}
|
|
808
860
|
logger.info("init for device " + this.implementation.deviceID);
|
|
809
861
|
logger.info("version native " + this.currentVersionNative.getOriginalString());
|
|
862
|
+
this.reportAppLaunchStart();
|
|
810
863
|
this.autoDeleteFailed = this.getConfig().getBoolean("autoDeleteFailed", true);
|
|
811
864
|
this.autoDeletePrevious = this.getConfig().getBoolean("autoDeletePrevious", true);
|
|
812
865
|
this.updateUrl = this.getConfig().getString("updateUrl", updateUrlDefault);
|
|
@@ -828,7 +881,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
828
881
|
this.autoSplashscreenLoader = this.getConfig().getBoolean("autoSplashscreenLoader", false);
|
|
829
882
|
int splashscreenTimeoutValue = this.getConfig().getInt("autoSplashscreenTimeout", 10000);
|
|
830
883
|
this.autoSplashscreenTimeout = Math.max(0, splashscreenTimeoutValue);
|
|
831
|
-
|
|
884
|
+
int responseTimeoutSeconds = this.getConfig().getInt("responseTimeout", 20);
|
|
885
|
+
long responseTimeoutMillis = responseTimeoutSeconds > 0 ? (long) responseTimeoutSeconds * 1000L : 20_000L;
|
|
886
|
+
this.implementation.timeout = (int) Math.min(Integer.MAX_VALUE, responseTimeoutMillis);
|
|
887
|
+
DownloadService.applyHttpTimeouts(this.implementation.timeout);
|
|
832
888
|
this.shakeMenuEnabled = this.getConfig().getBoolean("shakeMenu", false);
|
|
833
889
|
this.shakeChannelSelectorEnabled = this.getConfig().getBoolean("allowShakeChannelSelector", false);
|
|
834
890
|
this.shakeMenuGesture = normalizedShakeMenuGesture(this.getConfig().getString("shakeMenuGesture", SHAKE_MENU_GESTURE_SHAKE));
|
|
@@ -851,11 +907,9 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
851
907
|
? this.prefs.getBoolean(PREVIEW_PREVIOUS_SHAKE_CHANNEL_SELECTOR_PREF_KEY, false)
|
|
852
908
|
: this.shakeChannelSelectorEnabled;
|
|
853
909
|
}
|
|
854
|
-
boolean resetWhenUpdate = this.getConfig().getBoolean("resetWhenUpdate", true);
|
|
855
910
|
|
|
856
911
|
// Check if app was recently installed/updated BEFORE cleanupObsoleteVersions updates LatestVersionNative
|
|
857
912
|
this.wasRecentlyInstalledOrUpdated = this.checkIfRecentlyInstalledOrUpdated();
|
|
858
|
-
final boolean nativeBuildVersionChanged = this.hasNativeBuildVersionChanged();
|
|
859
913
|
|
|
860
914
|
this.implementation.autoReset(this.currentBuildVersion, resetWhenUpdate);
|
|
861
915
|
if (nativeBuildVersionChanged) {
|
|
@@ -866,11 +920,14 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
866
920
|
this.reportPreviousAppExitReasons();
|
|
867
921
|
this.reportPreviousWebViewRenderProcessGone();
|
|
868
922
|
this.installWebViewStatsReporter();
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
923
|
+
// Downloads (including shake-menu / CapgoUpdater entry points) wait on this gate.
|
|
924
|
+
this.implementation.downloadGate = this::waitForCleanupIfNeeded;
|
|
925
|
+
// Always run async cleanup: delete obsolete bundles on native update (when enabled)
|
|
926
|
+
// and sweep orphan folders every launch. Must not block app startup.
|
|
927
|
+
if (!resetWhenUpdate) {
|
|
872
928
|
this.persistCurrentNativeBuildVersion();
|
|
873
929
|
}
|
|
930
|
+
this.cleanupObsoleteVersions(resetWhenUpdate);
|
|
874
931
|
|
|
875
932
|
// Check for 'kill' delay condition on app launch
|
|
876
933
|
// This handles cases where the app was killed by the system (onDestroy is not reliable)
|
|
@@ -899,11 +956,18 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
899
956
|
},
|
|
900
957
|
logger
|
|
901
958
|
);
|
|
902
|
-
this.appLifecycleObserver.register();
|
|
903
|
-
|
|
959
|
+
this.appLifecycleObserver.register(this.getContext());
|
|
960
|
+
if (!this.appLifecycleObserver.isRegistered()) {
|
|
961
|
+
logger.warn("ProcessLifecycleOwner unavailable; using activity lifecycle callbacks");
|
|
962
|
+
} else {
|
|
963
|
+
logger.info("Using ProcessLifecycleOwner for foreground/background detection (Android 14+)");
|
|
964
|
+
}
|
|
904
965
|
} else {
|
|
905
966
|
logger.info("Using activity lifecycle callbacks for foreground/background detection (Android <14)");
|
|
906
967
|
}
|
|
968
|
+
|
|
969
|
+
// Expect notifyAppReady before the first appReady/splash hide (same idea as iOS).
|
|
970
|
+
this.armPendingNotifyAppReadyWait();
|
|
907
971
|
}
|
|
908
972
|
|
|
909
973
|
private boolean semaphoreWait(final int phase, Number waitTime) {
|
|
@@ -946,6 +1010,32 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
946
1010
|
semaphoreReady.arriveAndDeregister();
|
|
947
1011
|
}
|
|
948
1012
|
|
|
1013
|
+
private void armPendingNotifyAppReadyWait() {
|
|
1014
|
+
this.clearPendingNotifyAppReadyWait();
|
|
1015
|
+
this.pendingNotifyAppReadyPhase = this.semaphoreUp();
|
|
1016
|
+
this.pendingNotifyAppReadyWait = true;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
private void clearPendingNotifyAppReadyWait() {
|
|
1020
|
+
if (!this.pendingNotifyAppReadyWait) {
|
|
1021
|
+
return;
|
|
1022
|
+
}
|
|
1023
|
+
final int phase = this.pendingNotifyAppReadyPhase;
|
|
1024
|
+
this.pendingNotifyAppReadyWait = false;
|
|
1025
|
+
this.pendingNotifyAppReadyPhase = -1;
|
|
1026
|
+
this.cleanupTimedOutSemaphoreWait(phase);
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
private boolean consumePendingNotifyAppReadyWait(final int[] phaseOut) {
|
|
1030
|
+
if (!this.pendingNotifyAppReadyWait) {
|
|
1031
|
+
return false;
|
|
1032
|
+
}
|
|
1033
|
+
phaseOut[0] = this.pendingNotifyAppReadyPhase;
|
|
1034
|
+
this.pendingNotifyAppReadyWait = false;
|
|
1035
|
+
this.pendingNotifyAppReadyPhase = -1;
|
|
1036
|
+
return true;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
949
1039
|
protected long getMinimumPendingBundleAppReadyTimeoutMs() {
|
|
950
1040
|
return PENDING_BUNDLE_APP_READY_MIN_TIMEOUT_MS;
|
|
951
1041
|
}
|
|
@@ -984,19 +1074,40 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
984
1074
|
|
|
985
1075
|
private void sendReadyToJs(final BundleInfo current, final String msg, final boolean isDirectUpdate) {
|
|
986
1076
|
logger.info("sendReadyToJs: " + msg);
|
|
987
|
-
final
|
|
988
|
-
|
|
989
|
-
ret.put("status", msg);
|
|
1077
|
+
final int[] pendingPhase = new int[] { -1 };
|
|
1078
|
+
final boolean shouldWait = this.consumePendingNotifyAppReadyWait(pendingPhase);
|
|
990
1079
|
|
|
991
|
-
|
|
992
|
-
|
|
1080
|
+
final Runnable emitReady = () -> {
|
|
1081
|
+
final JSObject ret = new JSObject();
|
|
1082
|
+
ret.put("bundle", InternalUtils.mapToJSObject(current.toJSONMap()));
|
|
1083
|
+
ret.put("status", msg);
|
|
993
1084
|
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
1085
|
+
this.notifyListeners("appReady", ret, true);
|
|
1086
|
+
|
|
1087
|
+
// Auto hide splashscreen if enabled
|
|
1088
|
+
// We show it on background when conditions are met, so we should hide it on foreground regardless of update outcome
|
|
1089
|
+
if (this.autoSplashscreen) {
|
|
1090
|
+
this.hideSplashscreen();
|
|
1091
|
+
}
|
|
1092
|
+
this.hidePreviewTransitionLoader("app-ready");
|
|
1093
|
+
};
|
|
1094
|
+
|
|
1095
|
+
if (!shouldWait) {
|
|
1096
|
+
emitReady.run();
|
|
1097
|
+
return;
|
|
998
1098
|
}
|
|
999
|
-
|
|
1099
|
+
|
|
1100
|
+
// Never block the UI thread waiting for notifyAppReady (JS needs it).
|
|
1101
|
+
if (Looper.myLooper() == Looper.getMainLooper()) {
|
|
1102
|
+
startNewThread(() -> {
|
|
1103
|
+
this.semaphoreWait(pendingPhase[0], this.appReadyTimeout);
|
|
1104
|
+
emitReady.run();
|
|
1105
|
+
});
|
|
1106
|
+
return;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
this.semaphoreWait(pendingPhase[0], this.appReadyTimeout);
|
|
1110
|
+
emitReady.run();
|
|
1000
1111
|
}
|
|
1001
1112
|
|
|
1002
1113
|
private void hideSplashscreen() {
|
|
@@ -1300,6 +1411,74 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1300
1411
|
return false;
|
|
1301
1412
|
}
|
|
1302
1413
|
|
|
1414
|
+
static boolean shouldClearPersistedDefaultChannel(
|
|
1415
|
+
final boolean persistDefaultChannelOnReinstall,
|
|
1416
|
+
final boolean resetWhenUpdate,
|
|
1417
|
+
final boolean nativeBuildVersionChanged,
|
|
1418
|
+
final boolean restoredReinstall
|
|
1419
|
+
) {
|
|
1420
|
+
return !persistDefaultChannelOnReinstall && (restoredReinstall || (resetWhenUpdate && nativeBuildVersionChanged));
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
static boolean clearPersistedDefaultChannel(final SharedPreferences.Editor editor) {
|
|
1424
|
+
editor.remove(DEFAULT_CHANNEL_PREF_KEY);
|
|
1425
|
+
editor.remove(PREVIEW_PREVIOUS_DEFAULT_CHANNEL_PREF_KEY);
|
|
1426
|
+
editor.remove(PREVIEW_PREVIOUS_DEFAULT_CHANNEL_WAS_SET_PREF_KEY);
|
|
1427
|
+
return editor.commit();
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
private File defaultChannelInstallMarker() {
|
|
1431
|
+
return new File(this.getContext().getNoBackupFilesDir(), DEFAULT_CHANNEL_INSTALL_MARKER_FILE);
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
static boolean invalidateDefaultChannelInstallMarker(final File marker) {
|
|
1435
|
+
return !marker.exists() || marker.delete();
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
private boolean isRestoredReinstall() {
|
|
1439
|
+
return isRestoredReinstall(
|
|
1440
|
+
this.defaultChannelInstallMarker(),
|
|
1441
|
+
this.prefs.getBoolean(DEFAULT_CHANNEL_INSTALL_MARKER_PREF_KEY, false)
|
|
1442
|
+
);
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
static boolean isRestoredReinstall(final File marker, final boolean markerWasCreated) {
|
|
1446
|
+
return markerWasCreated && !marker.exists();
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
private void prepareDefaultChannelInstallMarker() {
|
|
1450
|
+
prepareDefaultChannelInstallMarker(
|
|
1451
|
+
this.defaultChannelInstallMarker(),
|
|
1452
|
+
this.prefs.getBoolean(DEFAULT_CHANNEL_INSTALL_MARKER_PREF_KEY, false),
|
|
1453
|
+
this.editor,
|
|
1454
|
+
this.logger
|
|
1455
|
+
);
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
static void prepareDefaultChannelInstallMarker(
|
|
1459
|
+
final File marker,
|
|
1460
|
+
final boolean markerWasCreated,
|
|
1461
|
+
final SharedPreferences.Editor editor,
|
|
1462
|
+
final Logger logger
|
|
1463
|
+
) {
|
|
1464
|
+
if (!marker.exists()) {
|
|
1465
|
+
try {
|
|
1466
|
+
if (!marker.createNewFile() && !marker.exists()) {
|
|
1467
|
+
throw new IOException("Marker file was not created");
|
|
1468
|
+
}
|
|
1469
|
+
} catch (final IOException e) {
|
|
1470
|
+
logger.warn("Cannot create default channel install marker: " + e.getMessage());
|
|
1471
|
+
editor.remove(DEFAULT_CHANNEL_INSTALL_MARKER_PREF_KEY);
|
|
1472
|
+
editor.commit();
|
|
1473
|
+
return;
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
if (!markerWasCreated) {
|
|
1477
|
+
editor.putBoolean(DEFAULT_CHANNEL_INSTALL_MARKER_PREF_KEY, true);
|
|
1478
|
+
editor.apply();
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1303
1482
|
private boolean hasNativeBuildVersionChanged() {
|
|
1304
1483
|
final String lastKnownVersion = this.getStoredNativeBuildVersion();
|
|
1305
1484
|
return !lastKnownVersion.isEmpty() && !lastKnownVersion.equals(this.currentBuildVersion);
|
|
@@ -1486,11 +1665,13 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1486
1665
|
this.webViewStatsListener = new WebViewListener() {
|
|
1487
1666
|
@Override
|
|
1488
1667
|
public void onPageStarted(final android.webkit.WebView view) {
|
|
1668
|
+
CapacitorUpdaterPlugin.this.webViewPageStartedAtMs = System.currentTimeMillis();
|
|
1489
1669
|
CapacitorUpdaterPlugin.this.evaluateWebViewStatsReporterScript(view, script);
|
|
1490
1670
|
}
|
|
1491
1671
|
|
|
1492
1672
|
@Override
|
|
1493
1673
|
public void onPageLoaded(final android.webkit.WebView view) {
|
|
1674
|
+
CapacitorUpdaterPlugin.this.reportWebViewPageLoaded(view);
|
|
1494
1675
|
CapacitorUpdaterPlugin.this.evaluateWebViewStatsReporterScript(view, script);
|
|
1495
1676
|
}
|
|
1496
1677
|
};
|
|
@@ -1556,6 +1737,83 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1556
1737
|
});
|
|
1557
1738
|
}
|
|
1558
1739
|
|
|
1740
|
+
private void reportAppLaunchStart() {
|
|
1741
|
+
if (
|
|
1742
|
+
this.implementation == null ||
|
|
1743
|
+
this.implementation.statsUrl == null ||
|
|
1744
|
+
this.implementation.statsUrl.isEmpty() ||
|
|
1745
|
+
this.launchStartReported
|
|
1746
|
+
) {
|
|
1747
|
+
return;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
this.launchStartReported = true;
|
|
1751
|
+
final BundleInfo current = this.implementation.getCurrentBundle();
|
|
1752
|
+
final Map<String, String> metadata = new HashMap<>();
|
|
1753
|
+
metadata.put("launch_started_at", Long.toString(this.launchStartedAtMs));
|
|
1754
|
+
metadata.put("source", "plugin_load");
|
|
1755
|
+
this.implementation.sendStats("app_launch_start", current == null ? "" : current.getVersionName(), "", metadata);
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
private void reportAppLaunchReady(final BundleInfo bundle) {
|
|
1759
|
+
synchronized (this.launchReportLock) {
|
|
1760
|
+
if (
|
|
1761
|
+
this.implementation == null ||
|
|
1762
|
+
this.implementation.statsUrl == null ||
|
|
1763
|
+
this.implementation.statsUrl.isEmpty() ||
|
|
1764
|
+
this.launchReadyReported ||
|
|
1765
|
+
this.launchTimeoutReported
|
|
1766
|
+
) {
|
|
1767
|
+
return;
|
|
1768
|
+
}
|
|
1769
|
+
this.launchReadyReported = true;
|
|
1770
|
+
}
|
|
1771
|
+
final Map<String, String> metadata = new HashMap<>();
|
|
1772
|
+
metadata.put("duration_ms", Long.toString(Math.max(0, System.currentTimeMillis() - this.launchStartedAtMs)));
|
|
1773
|
+
metadata.put("launch_started_at", Long.toString(this.launchStartedAtMs));
|
|
1774
|
+
metadata.put("source", "notify_app_ready");
|
|
1775
|
+
this.implementation.sendStats("app_launch_ready", bundle == null ? "" : bundle.getVersionName(), "", metadata);
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
private void reportAppLaunchTimeout(final BundleInfo bundle) {
|
|
1779
|
+
synchronized (this.launchReportLock) {
|
|
1780
|
+
if (
|
|
1781
|
+
this.implementation == null ||
|
|
1782
|
+
this.implementation.statsUrl == null ||
|
|
1783
|
+
this.implementation.statsUrl.isEmpty() ||
|
|
1784
|
+
this.launchReadyReported ||
|
|
1785
|
+
this.launchTimeoutReported
|
|
1786
|
+
) {
|
|
1787
|
+
return;
|
|
1788
|
+
}
|
|
1789
|
+
this.launchTimeoutReported = true;
|
|
1790
|
+
}
|
|
1791
|
+
final Map<String, String> metadata = new HashMap<>();
|
|
1792
|
+
metadata.put("duration_ms", Long.toString(Math.max(0, System.currentTimeMillis() - this.launchStartedAtMs)));
|
|
1793
|
+
metadata.put("launch_started_at", Long.toString(this.launchStartedAtMs));
|
|
1794
|
+
metadata.put("timeout_ms", Long.toString(this.resolveAppReadyCheckTimeoutMs()));
|
|
1795
|
+
metadata.put("source", "app_ready_timeout");
|
|
1796
|
+
this.implementation.sendStats("app_launch_timeout", bundle == null ? "" : bundle.getVersionName(), "", metadata);
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
private void reportWebViewPageLoaded(final android.webkit.WebView view) {
|
|
1800
|
+
if (this.implementation == null || this.implementation.statsUrl == null || this.implementation.statsUrl.isEmpty()) {
|
|
1801
|
+
return;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
final Map<String, String> metadata = new HashMap<>();
|
|
1805
|
+
metadata.put("source", "android_webview_listener");
|
|
1806
|
+
final long pageStartedAt = this.webViewPageStartedAtMs;
|
|
1807
|
+
if (pageStartedAt > 0) {
|
|
1808
|
+
metadata.put("duration_ms", Long.toString(Math.max(0, System.currentTimeMillis() - pageStartedAt)));
|
|
1809
|
+
metadata.put("page_started_at", Long.toString(pageStartedAt));
|
|
1810
|
+
}
|
|
1811
|
+
if (view != null && view.getUrl() != null && !view.getUrl().isEmpty()) {
|
|
1812
|
+
metadata.put("href", truncateStatsMetadataValue(sanitizeStatsMetadataUrl(view.getUrl()), 512));
|
|
1813
|
+
}
|
|
1814
|
+
this.reportWebViewStats("webview_page_loaded", metadata);
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1559
1817
|
private Map<String, String> buildWebViewRenderProcessGoneMetadata(final Object detailObj) {
|
|
1560
1818
|
final Map<String, String> metadata = new HashMap<>();
|
|
1561
1819
|
metadata.put("error_type", "render_process_gone");
|
|
@@ -1664,6 +1922,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1664
1922
|
return "webview_render_process_gone";
|
|
1665
1923
|
case "web_content_process_terminated":
|
|
1666
1924
|
return "webview_content_process_terminated";
|
|
1925
|
+
case "webview_dom_content_loaded":
|
|
1926
|
+
return "webview_dom_content_loaded";
|
|
1927
|
+
case "webview_page_loaded":
|
|
1928
|
+
return "webview_page_loaded";
|
|
1667
1929
|
case "javascript_error":
|
|
1668
1930
|
default:
|
|
1669
1931
|
return "webview_javascript_error";
|
|
@@ -1682,6 +1944,8 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1682
1944
|
putStatsMetadataValue(metadata, "href", sanitizeStatsMetadataUrl(data.optString("href", "")), 512);
|
|
1683
1945
|
putStatsMetadataValue(metadata, "user_agent", data.optString("user_agent", ""), 256);
|
|
1684
1946
|
putStatsMetadataValue(metadata, "session_id", data.optString("session_id", ""), 128);
|
|
1947
|
+
putStatsMetadataValue(metadata, "duration_ms", data.optString("duration_ms", ""), 32);
|
|
1948
|
+
putStatsMetadataValue(metadata, "page_started_at", data.optString("page_started_at", ""), 64);
|
|
1685
1949
|
putStatsMetadataValue(metadata, "previous_session_id", data.optString("previous_session_id", ""), 128);
|
|
1686
1950
|
putStatsMetadataValue(metadata, "previous_href", sanitizeStatsMetadataUrl(data.optString("previous_href", "")), 512);
|
|
1687
1951
|
putStatsMetadataValue(metadata, "previous_started_at", data.optString("previous_started_at", ""), 64);
|
|
@@ -1814,12 +2078,14 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1814
2078
|
"if(previous&&previous.active){send({type:'webview_unclean_restart',message:'WebView restarted without a clean page unload',previous_session_id:s(previous.id),previous_href:s(previous.href),previous_started_at:s(previous.started_at),previous_updated_at:s(previous.updated_at)});}" +
|
|
1815
2079
|
"writeSession(true);" +
|
|
1816
2080
|
"setInterval(function(){writeSession(true);},15000);" +
|
|
2081
|
+
"function pageDuration(){var started=Number(window.__capgoWebViewSessionStartedAt||Date.now());return String(Math.max(0,Date.now()-started));}" +
|
|
1817
2082
|
"function markClean(){writeSession(false);}" +
|
|
1818
2083
|
"window.addEventListener('pagehide',markClean,true);" +
|
|
1819
2084
|
"window.addEventListener('beforeunload',markClean,true);" +
|
|
1820
2085
|
"window.addEventListener('error',function(event){var target=event&&event.target;if(target&&target!==window&&(target.src||target.href)){send({type:'resource_error',message:'Resource failed to load',source:s(target.src||target.href),tag_name:s(target.tagName)});return;}send({type:'javascript_error',message:s((event&&event.message)||(event&&event.error)),source:s(event&&event.filename),line:s(event&&event.lineno),column:s(event&&event.colno),stack:stack(event&&event.error)});},true);" +
|
|
1821
2086
|
"window.addEventListener('unhandledrejection',function(event){var reason=event&&event.reason;send({type:'unhandled_rejection',message:s(reason),stack:stack(reason)});},true);" +
|
|
1822
2087
|
"document.addEventListener('securitypolicyviolation',function(event){send({type:'security_policy_violation',message:s(event&&event.violatedDirective),source:s(event&&event.blockedURI)});},true);" +
|
|
2088
|
+
"document.addEventListener('DOMContentLoaded',function(){send({type:'webview_dom_content_loaded',message:'WebView DOM content loaded',duration_ms:pageDuration(),page_started_at:String(window.__capgoWebViewSessionStartedAt)});},true);" +
|
|
1823
2089
|
"document.addEventListener('deviceready',scheduleFlush,false);" +
|
|
1824
2090
|
"setTimeout(scheduleFlush,0);" +
|
|
1825
2091
|
"})();"
|
|
@@ -1872,10 +2138,9 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
1872
2138
|
);
|
|
1873
2139
|
}
|
|
1874
2140
|
} else {
|
|
1875
|
-
final boolean enabled =
|
|
1876
|
-
configuredMode
|
|
1877
|
-
|
|
1878
|
-
: Boolean.TRUE.equals(this.getConfig().getBoolean("autoUpdate", true));
|
|
2141
|
+
final boolean enabled = configuredMode != null
|
|
2142
|
+
? "true".equals(configuredMode)
|
|
2143
|
+
: Boolean.TRUE.equals(this.getConfig().getBoolean("autoUpdate", true));
|
|
1879
2144
|
this.autoUpdateMode = enabled
|
|
1880
2145
|
? autoUpdateModeForLegacyDirectUpdateMode(this.resolveLegacyDirectUpdateModeFromConfig())
|
|
1881
2146
|
: AUTO_UPDATE_MODE_OFF;
|
|
@@ -2140,67 +2405,57 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2140
2405
|
return false;
|
|
2141
2406
|
}
|
|
2142
2407
|
|
|
2143
|
-
private void cleanupObsoleteVersions() {
|
|
2408
|
+
private void cleanupObsoleteVersions(final boolean resetWhenUpdate) {
|
|
2409
|
+
// Latch created before start so waiters never race past an unstarted cleanup thread.
|
|
2410
|
+
final CountDownLatch latch = new CountDownLatch(1);
|
|
2411
|
+
this.cleanupComplete = false;
|
|
2412
|
+
this.cleanupLatch = latch;
|
|
2144
2413
|
cleanupThread = startNewThread(() -> {
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
for (final BundleInfo info : storedBundles) {
|
|
2168
|
-
if (info != null && info.getId() != null && !info.getId().isEmpty()) {
|
|
2169
|
-
allowedIds.add(info.getId());
|
|
2414
|
+
try {
|
|
2415
|
+
synchronized (cleanupLock) {
|
|
2416
|
+
try {
|
|
2417
|
+
final String previous = this.getStoredNativeBuildVersion();
|
|
2418
|
+
final boolean nativeVersionChanged = !"".equals(previous) && !Objects.equals(this.currentBuildVersion, previous);
|
|
2419
|
+
if (resetWhenUpdate && nativeVersionChanged) {
|
|
2420
|
+
logger.info("New native build version detected: " + this.currentBuildVersion);
|
|
2421
|
+
this.implementation.reset(true);
|
|
2422
|
+
final List<BundleInfo> installed = this.implementation.list(false);
|
|
2423
|
+
for (final BundleInfo bundle : installed) {
|
|
2424
|
+
try {
|
|
2425
|
+
logger.info("Deleting obsolete bundle: " + bundle.getId());
|
|
2426
|
+
this.implementation.delete(bundle.getId());
|
|
2427
|
+
} catch (final Exception e) {
|
|
2428
|
+
logger.error("Failed to delete: " + bundle.getId() + " " + e.getMessage());
|
|
2429
|
+
}
|
|
2430
|
+
try {
|
|
2431
|
+
Thread.sleep(75L);
|
|
2432
|
+
} catch (final InterruptedException ie) {
|
|
2433
|
+
Thread.currentThread().interrupt();
|
|
2434
|
+
return;
|
|
2435
|
+
}
|
|
2170
2436
|
}
|
|
2437
|
+
this.implementation.cleanupDeltaCache();
|
|
2171
2438
|
}
|
|
2172
|
-
this.implementation.cleanupDownloadDirectories(allowedIds, Thread.currentThread());
|
|
2173
|
-
this.implementation.cleanupOrphanedTempFolders(Thread.currentThread());
|
|
2174
2439
|
|
|
2175
|
-
//
|
|
2176
|
-
|
|
2177
|
-
logger.warn("Cleanup was cancelled before delta cache cleanup");
|
|
2178
|
-
return;
|
|
2179
|
-
}
|
|
2180
|
-
this.implementation.cleanupDeltaCache(Thread.currentThread());
|
|
2181
|
-
}
|
|
2182
|
-
this.editor.putString("LatestNativeBuildVersion", this.currentBuildVersion);
|
|
2183
|
-
this.editor.apply();
|
|
2184
|
-
} catch (Exception e) {
|
|
2185
|
-
logger.error("Error during cleanupObsoleteVersions: " + e.getMessage());
|
|
2186
|
-
} finally {
|
|
2187
|
-
cleanupComplete = true;
|
|
2188
|
-
logger.info("Cleanup complete");
|
|
2189
|
-
}
|
|
2190
|
-
}
|
|
2191
|
-
});
|
|
2440
|
+
// Resume any DELETING leftovers from prior kills, one-by-one.
|
|
2441
|
+
this.implementation.drainPendingDeletes();
|
|
2192
2442
|
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2443
|
+
// Always sweep orphan folders so incomplete prior cleanups (or failed deletes)
|
|
2444
|
+
// cannot leave hundreds of MB behind across launches.
|
|
2445
|
+
final Set<String> allowedIds = this.implementation.allowedBundleIdsForCleanup();
|
|
2446
|
+
this.implementation.cleanupDownloadDirectories(allowedIds);
|
|
2447
|
+
this.implementation.cleanupOrphanedTempFolders(null);
|
|
2448
|
+
|
|
2449
|
+
this.persistCurrentNativeBuildVersion();
|
|
2450
|
+
} catch (Exception e) {
|
|
2451
|
+
logger.error("Error during cleanupObsoleteVersions: " + e.getMessage());
|
|
2452
|
+
} finally {
|
|
2453
|
+
cleanupComplete = true;
|
|
2454
|
+
logger.info("Cleanup complete");
|
|
2455
|
+
}
|
|
2201
2456
|
}
|
|
2202
|
-
}
|
|
2203
|
-
|
|
2457
|
+
} finally {
|
|
2458
|
+
latch.countDown();
|
|
2204
2459
|
}
|
|
2205
2460
|
});
|
|
2206
2461
|
}
|
|
@@ -2214,6 +2469,10 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2214
2469
|
}
|
|
2215
2470
|
|
|
2216
2471
|
void persistCurrentNativeBuildVersion() {
|
|
2472
|
+
if (this.defaultChannelCleanupMustRetry) {
|
|
2473
|
+
logger.warn("Keeping the previous native build version so default channel cleanup retries");
|
|
2474
|
+
return;
|
|
2475
|
+
}
|
|
2217
2476
|
this.editor.putString("LatestNativeBuildVersion", this.currentBuildVersion);
|
|
2218
2477
|
this.editor.apply();
|
|
2219
2478
|
}
|
|
@@ -2224,11 +2483,14 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2224
2483
|
}
|
|
2225
2484
|
|
|
2226
2485
|
logger.info("Waiting for cleanup to complete before starting download...");
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2486
|
+
try {
|
|
2487
|
+
this.cleanupLatch.await();
|
|
2488
|
+
} catch (final InterruptedException e) {
|
|
2489
|
+
Thread.currentThread().interrupt();
|
|
2490
|
+
logger.warn("Interrupted while waiting for cleanup");
|
|
2491
|
+
throw new IllegalStateException("Interrupted while waiting for cleanup");
|
|
2231
2492
|
}
|
|
2493
|
+
logger.info("Cleanup finished, proceeding with download");
|
|
2232
2494
|
}
|
|
2233
2495
|
|
|
2234
2496
|
public void notifyDownload(final String id, final int percent) {
|
|
@@ -2269,11 +2531,15 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2269
2531
|
call.reject("setUpdateUrl called without url");
|
|
2270
2532
|
return;
|
|
2271
2533
|
}
|
|
2272
|
-
this.updateUrl = url;
|
|
2273
2534
|
if (Boolean.TRUE.equals(this.persistModifyUrl)) {
|
|
2274
2535
|
this.editor.putString(UPDATE_URL_PREF_KEY, url);
|
|
2275
|
-
this.editor.
|
|
2536
|
+
if (!this.editor.commit()) {
|
|
2537
|
+
logger.error("Failed to persist updateUrl");
|
|
2538
|
+
call.reject("Failed to persist updateUrl");
|
|
2539
|
+
return;
|
|
2540
|
+
}
|
|
2276
2541
|
}
|
|
2542
|
+
this.updateUrl = url;
|
|
2277
2543
|
call.resolve();
|
|
2278
2544
|
}
|
|
2279
2545
|
|
|
@@ -2290,11 +2556,15 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2290
2556
|
call.reject("setStatsUrl called without url");
|
|
2291
2557
|
return;
|
|
2292
2558
|
}
|
|
2293
|
-
this.implementation.statsUrl = url;
|
|
2294
2559
|
if (Boolean.TRUE.equals(this.persistModifyUrl)) {
|
|
2295
2560
|
this.editor.putString(STATS_URL_PREF_KEY, url);
|
|
2296
|
-
this.editor.
|
|
2561
|
+
if (!this.editor.commit()) {
|
|
2562
|
+
logger.error("Failed to persist statsUrl");
|
|
2563
|
+
call.reject("Failed to persist statsUrl");
|
|
2564
|
+
return;
|
|
2565
|
+
}
|
|
2297
2566
|
}
|
|
2567
|
+
this.implementation.statsUrl = url;
|
|
2298
2568
|
call.resolve();
|
|
2299
2569
|
}
|
|
2300
2570
|
|
|
@@ -2311,11 +2581,15 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2311
2581
|
call.reject("setChannelUrl called without url");
|
|
2312
2582
|
return;
|
|
2313
2583
|
}
|
|
2314
|
-
this.implementation.channelUrl = url;
|
|
2315
2584
|
if (Boolean.TRUE.equals(this.persistModifyUrl)) {
|
|
2316
2585
|
this.editor.putString(CHANNEL_URL_PREF_KEY, url);
|
|
2317
|
-
this.editor.
|
|
2586
|
+
if (!this.editor.commit()) {
|
|
2587
|
+
logger.error("Failed to persist channelUrl");
|
|
2588
|
+
call.reject("Failed to persist channelUrl");
|
|
2589
|
+
return;
|
|
2590
|
+
}
|
|
2318
2591
|
}
|
|
2592
|
+
this.implementation.channelUrl = url;
|
|
2319
2593
|
call.resolve();
|
|
2320
2594
|
}
|
|
2321
2595
|
|
|
@@ -2566,6 +2840,8 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2566
2840
|
final String checksum,
|
|
2567
2841
|
final JSONArray manifest
|
|
2568
2842
|
) throws IOException {
|
|
2843
|
+
// Manual/preview downloads must wait too — launch orphan sweep can delete their temps.
|
|
2844
|
+
waitForCleanupIfNeeded();
|
|
2569
2845
|
if (manifest != null) {
|
|
2570
2846
|
return this.implementation.downloadManifest(url, version, sessionKey, checksum, manifest);
|
|
2571
2847
|
}
|
|
@@ -2739,6 +3015,8 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
2739
3015
|
}
|
|
2740
3016
|
|
|
2741
3017
|
protected boolean _reload() {
|
|
3018
|
+
// Drop any launch pending wait; this reload owns notifyAppReady synchronization.
|
|
3019
|
+
this.clearPendingNotifyAppReadyWait();
|
|
2742
3020
|
final int phase = this.semaphoreUp();
|
|
2743
3021
|
this.applyCurrentBundleToBridge();
|
|
2744
3022
|
|
|
@@ -3734,30 +4012,33 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
3734
4012
|
this.editor.putBoolean(PREVIEW_SESSION_ALERT_PENDING_PREF_KEY, false);
|
|
3735
4013
|
this.editor.apply();
|
|
3736
4014
|
|
|
3737
|
-
new Handler(Looper.getMainLooper()).postDelayed(
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
4015
|
+
new Handler(Looper.getMainLooper()).postDelayed(
|
|
4016
|
+
() -> {
|
|
4017
|
+
try {
|
|
4018
|
+
if (!Boolean.TRUE.equals(this.previewSessionEnabled)) {
|
|
4019
|
+
return;
|
|
4020
|
+
}
|
|
4021
|
+
if (getActivity() == null || getActivity().isFinishing()) {
|
|
4022
|
+
this.previewSessionAlertPending = true;
|
|
4023
|
+
this.editor.putBoolean(PREVIEW_SESSION_ALERT_PENDING_PREF_KEY, true);
|
|
4024
|
+
this.editor.apply();
|
|
4025
|
+
return;
|
|
4026
|
+
}
|
|
4027
|
+
|
|
4028
|
+
new AlertDialog.Builder(getActivity())
|
|
4029
|
+
.setTitle("Preview started")
|
|
4030
|
+
.setMessage("shake".equals(this.shakeMenuGesture) ? "Shake to open menu." : "Three-finger pinch to open menu.")
|
|
4031
|
+
.setPositiveButton("Got it", (dialog, which) -> dialog.dismiss())
|
|
4032
|
+
.show();
|
|
4033
|
+
} catch (final Exception e) {
|
|
3743
4034
|
this.previewSessionAlertPending = true;
|
|
3744
4035
|
this.editor.putBoolean(PREVIEW_SESSION_ALERT_PENDING_PREF_KEY, true);
|
|
3745
4036
|
this.editor.apply();
|
|
3746
|
-
|
|
4037
|
+
logger.warn("Could not show preview session notice: " + e.getMessage());
|
|
3747
4038
|
}
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
.setMessage("Shake your device anytime to reload or leave the test app.")
|
|
3752
|
-
.setPositiveButton("Got it", (dialog, which) -> dialog.dismiss())
|
|
3753
|
-
.show();
|
|
3754
|
-
} catch (final Exception e) {
|
|
3755
|
-
this.previewSessionAlertPending = true;
|
|
3756
|
-
this.editor.putBoolean(PREVIEW_SESSION_ALERT_PENDING_PREF_KEY, true);
|
|
3757
|
-
this.editor.apply();
|
|
3758
|
-
logger.warn("Could not show preview session notice: " + e.getMessage());
|
|
3759
|
-
}
|
|
3760
|
-
}, 600);
|
|
4039
|
+
},
|
|
4040
|
+
600
|
|
4041
|
+
);
|
|
3761
4042
|
}
|
|
3762
4043
|
|
|
3763
4044
|
@PluginMethod
|
|
@@ -3966,12 +4247,18 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
3966
4247
|
if (this.shouldBlockAutoUpdateForPreviewSession()) {
|
|
3967
4248
|
return "preview_session";
|
|
3968
4249
|
}
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
4250
|
+
synchronized (this) {
|
|
4251
|
+
final Thread previousTask = this.backgroundDownloadTask;
|
|
4252
|
+
final Thread task = this.backgroundDownload();
|
|
4253
|
+
if (task == null) {
|
|
4254
|
+
return "unavailable";
|
|
4255
|
+
}
|
|
4256
|
+
if (previousTask != null && previousTask == task) {
|
|
4257
|
+
logger.info("Download already in progress, skipping duplicate download request");
|
|
4258
|
+
return "already_running";
|
|
4259
|
+
}
|
|
4260
|
+
return "queued";
|
|
3972
4261
|
}
|
|
3973
|
-
this.backgroundDownload();
|
|
3974
|
-
return "queued";
|
|
3975
4262
|
}
|
|
3976
4263
|
|
|
3977
4264
|
@PluginMethod
|
|
@@ -4199,6 +4486,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4199
4486
|
try {
|
|
4200
4487
|
final BundleInfo bundle = this.implementation.getCurrentBundle();
|
|
4201
4488
|
this.implementation.setSuccess(bundle, this.autoDeletePrevious);
|
|
4489
|
+
this.reportAppLaunchReady(bundle);
|
|
4202
4490
|
logger.info("Current bundle loaded successfully. ['notifyAppReady()' was called] " + bundle);
|
|
4203
4491
|
logger.info("semaphoreReady countDown");
|
|
4204
4492
|
this.semaphoreDown();
|
|
@@ -4483,10 +4771,14 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4483
4771
|
return true;
|
|
4484
4772
|
}
|
|
4485
4773
|
|
|
4486
|
-
private Thread backgroundDownload() {
|
|
4774
|
+
private synchronized Thread backgroundDownload() {
|
|
4487
4775
|
if (this.shouldBlockAutoUpdateForPreviewSession()) {
|
|
4488
4776
|
return null;
|
|
4489
4777
|
}
|
|
4778
|
+
if (this.isDownloadStuckOrTimedOut()) {
|
|
4779
|
+
logger.info("Download already in progress, skipping duplicate download request");
|
|
4780
|
+
return this.backgroundDownloadTask;
|
|
4781
|
+
}
|
|
4490
4782
|
final boolean plannedDirectUpdate = this.shouldUseDirectUpdate();
|
|
4491
4783
|
final boolean initialDirectUpdateAllowed = this.isDirectUpdateCurrentlyAllowed(plannedDirectUpdate);
|
|
4492
4784
|
final String messageUpdate = initialDirectUpdateAllowed
|
|
@@ -4495,8 +4787,6 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4495
4787
|
? "Update will occur next time app moves to background."
|
|
4496
4788
|
: "Update will be downloaded and made available.";
|
|
4497
4789
|
Thread newTask = startNewThread(() -> {
|
|
4498
|
-
// Wait for cleanup to complete before starting download
|
|
4499
|
-
waitForCleanupIfNeeded();
|
|
4500
4790
|
if (CapacitorUpdaterPlugin.this.shouldBlockAutoUpdateForPreviewSession()) {
|
|
4501
4791
|
CapacitorUpdaterPlugin.this.clearBackgroundDownloadState();
|
|
4502
4792
|
return;
|
|
@@ -4509,7 +4799,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4509
4799
|
return;
|
|
4510
4800
|
}
|
|
4511
4801
|
JSObject jsRes = InternalUtils.mapToJSObject(res);
|
|
4512
|
-
final BundleInfo
|
|
4802
|
+
final BundleInfo currentBeforeCleanup = CapacitorUpdaterPlugin.this.implementation.getCurrentBundle();
|
|
4513
4803
|
|
|
4514
4804
|
// Handle network errors and other failures first
|
|
4515
4805
|
if (jsRes.has("error") || jsRes.has("kind")) {
|
|
@@ -4517,8 +4807,15 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4517
4807
|
String errorMessage = jsRes.has("message") ? jsRes.getString("message") : "server did not provide a message";
|
|
4518
4808
|
int statusCode = jsRes.has("statusCode") ? jsRes.optInt("statusCode", 0) : 0;
|
|
4519
4809
|
String kind = CapacitorUpdaterPlugin.this.getUpdateResponseKind(jsRes.has("kind") ? jsRes.getString("kind") : null);
|
|
4520
|
-
String latestVersion = jsRes.has("version") ? jsRes.getString("version") :
|
|
4521
|
-
CapacitorUpdaterPlugin.this.notifyUpdateCheckResult(
|
|
4810
|
+
String latestVersion = jsRes.has("version") ? jsRes.getString("version") : currentBeforeCleanup.getVersionName();
|
|
4811
|
+
CapacitorUpdaterPlugin.this.notifyUpdateCheckResult(
|
|
4812
|
+
kind,
|
|
4813
|
+
error,
|
|
4814
|
+
errorMessage,
|
|
4815
|
+
statusCode,
|
|
4816
|
+
latestVersion,
|
|
4817
|
+
currentBeforeCleanup
|
|
4818
|
+
);
|
|
4522
4819
|
CapacitorUpdaterPlugin.this.notifyBreakingEventsIfNeeded(
|
|
4523
4820
|
jsRes,
|
|
4524
4821
|
jsRes.has("version") ? jsRes.getString("version") : ""
|
|
@@ -4538,7 +4835,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4538
4835
|
CapacitorUpdaterPlugin.this.endBackGroundTaskWithNotif(
|
|
4539
4836
|
errorMessage,
|
|
4540
4837
|
latestVersion,
|
|
4541
|
-
|
|
4838
|
+
currentBeforeCleanup,
|
|
4542
4839
|
isFailure,
|
|
4543
4840
|
plannedDirectUpdate,
|
|
4544
4841
|
"download_fail",
|
|
@@ -4548,6 +4845,9 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4548
4845
|
return;
|
|
4549
4846
|
}
|
|
4550
4847
|
try {
|
|
4848
|
+
// File mutations wait here. getLatest already ran in parallel with cleanup.
|
|
4849
|
+
waitForCleanupIfNeeded();
|
|
4850
|
+
final BundleInfo current = CapacitorUpdaterPlugin.this.implementation.getCurrentBundle();
|
|
4551
4851
|
final String latestVersionName = jsRes.getString("version");
|
|
4552
4852
|
|
|
4553
4853
|
if ("builtin".equals(latestVersionName)) {
|
|
@@ -4796,8 +5096,8 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4796
5096
|
logger.error("error in update check " + e.getMessage());
|
|
4797
5097
|
CapacitorUpdaterPlugin.this.endBackGroundTaskWithNotif(
|
|
4798
5098
|
"Error in update check",
|
|
4799
|
-
|
|
4800
|
-
|
|
5099
|
+
currentBeforeCleanup.getVersionName(),
|
|
5100
|
+
currentBeforeCleanup,
|
|
4801
5101
|
true,
|
|
4802
5102
|
plannedDirectUpdate
|
|
4803
5103
|
);
|
|
@@ -4873,19 +5173,26 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
4873
5173
|
ret.put("bundle", InternalUtils.mapToJSObject(current.toJSONMap()));
|
|
4874
5174
|
this.persistLastFailedBundle(current);
|
|
4875
5175
|
this.notifyListeners("updateFailed", ret);
|
|
5176
|
+
this.reportAppLaunchTimeout(current);
|
|
4876
5177
|
this.implementation.sendStats("update_fail", current.getVersionName());
|
|
4877
5178
|
this.implementation.setError(current);
|
|
4878
5179
|
this.performReset(true, false, true);
|
|
4879
5180
|
if (CapacitorUpdaterPlugin.this.autoDeleteFailed && !current.isBuiltin()) {
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
5181
|
+
final String failedId = current.getId();
|
|
5182
|
+
final String failedVersion = current.getVersionName();
|
|
5183
|
+
logger.info("Deleting failing bundle: " + failedVersion);
|
|
5184
|
+
// Mark before async work so kill/OOM still resumes via drainPendingDeletes.
|
|
5185
|
+
CapacitorUpdaterPlugin.this.implementation.saveBundleInfo(failedId, current.setStatus(BundleStatus.DELETING));
|
|
5186
|
+
startNewThread(() -> {
|
|
5187
|
+
try {
|
|
5188
|
+
final Boolean res = CapacitorUpdaterPlugin.this.implementation.delete(failedId, false, false);
|
|
5189
|
+
if (Boolean.TRUE.equals(res)) {
|
|
5190
|
+
logger.info("Failed bundle deleted: " + failedVersion);
|
|
5191
|
+
}
|
|
5192
|
+
} catch (final IOException e) {
|
|
5193
|
+
logger.error("Failed to delete failed bundle: " + failedVersion + " " + e.getMessage());
|
|
4885
5194
|
}
|
|
4886
|
-
}
|
|
4887
|
-
logger.error("Failed to delete failed bundle: " + current.getVersionName() + " " + e.getMessage());
|
|
4888
|
-
}
|
|
5195
|
+
});
|
|
4889
5196
|
}
|
|
4890
5197
|
} else {
|
|
4891
5198
|
logger.info("notifyAppReady was called. This is fine: " + current.getId());
|
|
@@ -5000,6 +5307,7 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
5000
5307
|
|
|
5001
5308
|
// Do other background work after splashscreen is shown
|
|
5002
5309
|
CapacitorUpdaterPlugin.this.implementation.sendStats("app_moved_to_background", current.getVersionName());
|
|
5310
|
+
CapacitorUpdaterPlugin.this.implementation.persistPendingStats();
|
|
5003
5311
|
logger.info("Checking for pending update");
|
|
5004
5312
|
|
|
5005
5313
|
try {
|
|
@@ -5075,9 +5383,9 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
5075
5383
|
|
|
5076
5384
|
// On Android < 14, use activity lifecycle for foreground detection
|
|
5077
5385
|
// On Android 14+, ProcessLifecycleOwner handles this via AppLifecycleObserver
|
|
5078
|
-
if (
|
|
5079
|
-
if (isPreviousMainActivity) {
|
|
5080
|
-
logger.info("handleOnStart: appMovedToForeground
|
|
5386
|
+
if (!this.isProcessLifecycleObserverActive()) {
|
|
5387
|
+
if (isPreviousMainActivity || Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
5388
|
+
logger.info("handleOnStart: appMovedToForeground");
|
|
5081
5389
|
this.appMovedToForeground();
|
|
5082
5390
|
}
|
|
5083
5391
|
isPreviousMainActivity = true;
|
|
@@ -5096,11 +5404,16 @@ public class CapacitorUpdaterPlugin extends Plugin {
|
|
|
5096
5404
|
|
|
5097
5405
|
// On Android < 14, use activity lifecycle for background detection
|
|
5098
5406
|
// On Android 14+, ProcessLifecycleOwner handles this via AppLifecycleObserver
|
|
5099
|
-
if (
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
logger.info("handleOnStop: appMovedToBackground (Android <14 path)");
|
|
5407
|
+
if (!this.isProcessLifecycleObserverActive()) {
|
|
5408
|
+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
5409
|
+
logger.info("handleOnStop: appMovedToBackground");
|
|
5103
5410
|
this.appMovedToBackground();
|
|
5411
|
+
} else {
|
|
5412
|
+
isPreviousMainActivity = isMainActivity();
|
|
5413
|
+
if (isPreviousMainActivity) {
|
|
5414
|
+
logger.info("handleOnStop: appMovedToBackground (Android <14 path)");
|
|
5415
|
+
this.appMovedToBackground();
|
|
5416
|
+
}
|
|
5104
5417
|
}
|
|
5105
5418
|
}
|
|
5106
5419
|
} catch (Exception e) {
|