diff --git a/features/app.feature b/features/app.feature index 5c9dd09e..9f62bab1 100644 --- a/features/app.feature +++ b/features/app.feature @@ -16,6 +16,7 @@ Scenario: App data is included by default And the event "app.inForeground" is true And the event "app.type" equals the current OS name And the event "app.codeBundleId" equals "691f4728-4bf5-4da3-a954-ea9a10fa17d2" + And the event "metaData.test.latestVersion" is true And the error Bugsnag-Integrity header is valid # Parameter not present on iOS devices And the event "app.versionCode" equals the platform-dependent string: diff --git a/packages/plugin-expo-app/app.js b/packages/plugin-expo-app/app.js index 93e79202..85e9e281 100644 --- a/packages/plugin-expo-app/app.js +++ b/packages/plugin-expo-app/app.js @@ -54,6 +54,7 @@ module.exports = { event.app.bundleVersion = bundleVersion event.addMetadata('app', { nativeBundleVersion: bundleVersion, nativeVersionCode: versionCode }) + event.addMetadata('test', { latestVersion: true }) }, true) } }