From d8951937d362af9406d5697785f8cd43d846c68d Mon Sep 17 00:00:00 2001 From: Miguel Oliveira Date: Mon, 22 May 2023 23:07:21 -0300 Subject: [PATCH] =?UTF-8?q?Atualiza=20a=20vers=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.js | 6 ++++++ app.config.js | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/App.js b/App.js index 231c992..ae164e8 100644 --- a/App.js +++ b/App.js @@ -41,11 +41,17 @@ import { import Links from "./screens/dashboardScreens/Links"; import * as Sentry from "sentry-expo"; import RuSyncScreen from "./screens/dashboardScreens/RuSyncScreen"; +import Constants from "expo-constants"; +import * as Application from "expo-application"; Sentry.init({ dsn: "https://c1a9d3d02d424eaa91ee720bd5225f83@o4505104445079552.ingest.sentry.io/4505104464805888", enableInExpoDevelopment: false, debug: __DEV__, + dist: Application.nativeBuildVersion, + release: Constants.expoConfig.android.package + + "@" + Constants.expoConfig.version + + "+" + Constants.expoConfig.android.versionCode.toString(), }); if ( diff --git a/app.config.js b/app.config.js index f919d10..e38e4ea 100644 --- a/app.config.js +++ b/app.config.js @@ -3,7 +3,7 @@ module.exports = { name: "UFSCar Planner", owner: "petbccufscar", slug: "ufscar-planner", - version: "1.5.0", + version: "1.5.1", orientation: "portrait", icon: "./assets/icon.png", splash: { @@ -38,7 +38,7 @@ module.exports = { backgroundColor: "#E8243C", }, package: "com.pet.ufscarplanner", - versionCode: 14, + versionCode: 15, permissions: [ "RECEIVE_BOOT_COMPLETED", ],