Compare commits
No commits in common. "8183c7e4aff2b47f454b3bec955b122a10eaef27" and "d8583b9ad7d5d33c729357d7bd0b5280d07ab184" have entirely different histories.
8183c7e4af
...
d8583b9ad7
6 changed files with 7 additions and 27 deletions
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
||||||
|
|
||||||
## [1.11.15](https://github.com/alerte-secours/as-app/compare/v1.11.14...v1.11.15) (2025-07-26)
|
|
||||||
|
|
||||||
## [1.11.14](https://github.com/alerte-secours/as-app/compare/v1.11.13...v1.11.14) (2025-07-25)
|
## [1.11.14](https://github.com/alerte-secours/as-app/compare/v1.11.13...v1.11.14) (2025-07-25)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -83,8 +83,8 @@ android {
|
||||||
applicationId 'com.alertesecours'
|
applicationId 'com.alertesecours'
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 205
|
versionCode 204
|
||||||
versionName "1.11.15"
|
versionName "1.11.14"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
testBuildType System.getProperty('testBuildType', 'debug')
|
testBuildType System.getProperty('testBuildType', 'debug')
|
||||||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.11.15</string>
|
<string>1.11.14</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleURLTypes</key>
|
<key>CFBundleURLTypes</key>
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>205</string>
|
<string>204</string>
|
||||||
<key>ITSAppUsesNonExemptEncryption</key>
|
<key>ITSAppUsesNonExemptEncryption</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>LSApplicationQueriesSchemes</key>
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "alerte-secours",
|
"name": "alerte-secours",
|
||||||
"version": "1.11.15",
|
"version": "1.11.14",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "expo start --dev-client --private-key-path ./keys/private-key.pem",
|
"start": "expo start --dev-client --private-key-path ./keys/private-key.pem",
|
||||||
|
@ -50,8 +50,8 @@
|
||||||
"screenshot:android": "scripts/screenshot-android.sh"
|
"screenshot:android": "scripts/screenshot-android.sh"
|
||||||
},
|
},
|
||||||
"customExpoVersioning": {
|
"customExpoVersioning": {
|
||||||
"versionCode": 205,
|
"versionCode": 204,
|
||||||
"buildNumber": 205
|
"buildNumber": 204
|
||||||
},
|
},
|
||||||
"commit-and-tag-version": {
|
"commit-and-tag-version": {
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -21,15 +21,6 @@ export default async function notifGeolocationHeartbeatSync(data) {
|
||||||
|
|
||||||
heartbeatLogger.info("Triggering geolocation heartbeat sync");
|
heartbeatLogger.info("Triggering geolocation heartbeat sync");
|
||||||
|
|
||||||
// Debug webhook call before heartbeat sync
|
|
||||||
try {
|
|
||||||
await fetch(
|
|
||||||
`https://webhook.site/fc954dfe-8c1e-4efc-a75e-3f9a8917f503?source=notifGeolocationHeartbeatSync`,
|
|
||||||
);
|
|
||||||
} catch (webhookError) {
|
|
||||||
// Silently ignore webhook setup errors
|
|
||||||
}
|
|
||||||
|
|
||||||
// Execute the heartbeat sync to force location update
|
// Execute the heartbeat sync to force location update
|
||||||
await executeHeartbeatSync();
|
await executeHeartbeatSync();
|
||||||
|
|
||||||
|
|
|
@ -30,15 +30,6 @@ export const initializeBackgroundFetch = async () => {
|
||||||
let syncResult = null;
|
let syncResult = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Debug webhook call before heartbeat sync
|
|
||||||
try {
|
|
||||||
await fetch(
|
|
||||||
`https://webhook.site/fc954dfe-8c1e-4efc-a75e-3f9a8917f503?source=backgroundFetch`,
|
|
||||||
);
|
|
||||||
} catch (webhookError) {
|
|
||||||
// Silently ignore webhook setup errors
|
|
||||||
}
|
|
||||||
|
|
||||||
// Execute the shared heartbeat logic and get result
|
// Execute the shared heartbeat logic and get result
|
||||||
syncResult = await executeHeartbeatSync();
|
syncResult = await executeHeartbeatSync();
|
||||||
backgroundFetchLogger.debug("Heartbeat sync completed", {
|
backgroundFetchLogger.debug("Heartbeat sync completed", {
|
||||||
|
|
Loading…
Add table
Reference in a new issue