2 Commits d79aade2f0 ... 44965ba9b5

Autore SHA1 Messaggio Data
  Daniel 44965ba9b5 Version bump 5 mesi fa
  Daniel a18b874e70 Background location disable 5 mesi fa
3 ha cambiato i file con 3 aggiunte e 4 eliminazioni
  1. 2 2
      app.config.ts
  2. 0 1
      package.json
  3. 1 1
      src/utils/backgroundLocation.ts

+ 2 - 2
app.config.ts

@@ -24,7 +24,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
   owner: 'nomadmaniaou',
   scheme: 'nm',
   // Should be updated after every production release (deploy to AppStore/PlayMarket)
-  version: '2.0.28',
+  version: '2.0.29',
   // Should be updated after every dependency change
   runtimeVersion: '1.5',
   orientation: 'portrait',
@@ -116,7 +116,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
       'CAMERA',
       'MODIFY_AUDIO_SETTINGS'
     ],
-    versionCode: 81 // next version submitted to Google Play needs to be higher than that 2.0.28
+    versionCode: 82 // next version submitted to Google Play needs to be higher than that 2.0.29
   },
   plugins: [
     [

+ 0 - 1
package.json

@@ -47,7 +47,6 @@
     "expo-splash-screen": "~0.27.5",
     "expo-sqlite": "^14.0.6",
     "expo-status-bar": "~1.12.1",
-    "expo-task-manager": "^11.8.2",
     "expo-updates": "~0.25.24",
     "formik": "^2.4.5",
     "moment": "^2.29.4",

+ 1 - 1
src/utils/backgroundLocation.ts

@@ -1,4 +1,4 @@
-import * as TaskManager from 'expo-task-manager';
+// import * as TaskManager from 'expo-task-manager';
 import * as Location from 'expo-location';
 import axios from 'axios';
 import { storage, StoreType } from 'src/storage';