Skip to content

Commit

Permalink
Merge pull request #64 from kb-dev-lab/UKIT-4
Browse files Browse the repository at this point in the history
UKIT-4: Update to Expo SDK 48
  • Loading branch information
AamuLumi authored Sep 11, 2023
2 parents 7374c3b + c0b348d commit 50a2350
Show file tree
Hide file tree
Showing 4 changed files with 4,512 additions and 2,259 deletions.
4 changes: 2 additions & 2 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import RootContainer from './containers/rootContainer';
import SettingsManager from './utils/SettingsManager';
import DataManager from './utils/DataManager';

if (Constants.manifest.extra.sentryDSN) {
if (Constants.expoConfig.extra.sentryDSN) {
Sentry.init({
dsn: Constants.manifest.extra.sentryDSN,
dsn: Constants.expoConfig.extra.sentryDSN,
enableInExpoDevelopment: false,
debug: false, // Sentry will try to print out useful debugging information if something goes wrong with sending an event. Set this to `false` in production.
});
Expand Down
7 changes: 5 additions & 2 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
privacy: 'public',
githubUrl: 'https://github.com/kb-dev/UKit',
platforms: ['ios', 'android'],
version: '4.1.1',
version: '4.1.2',
orientation: 'portrait',
primaryColor: '#006F9F',
icon: './assets/icons/ios.png',
Expand Down Expand Up @@ -45,7 +45,7 @@ export default {
backgroundImage: './assets/icons/android_background.png',
},
permissions: ['READ_CALENDAR', 'WRITE_CALENDAR'],
versionCode: 62,
versionCode: 63,
},
androidStatusBar: {
barStyle: 'light-content',
Expand All @@ -61,4 +61,7 @@ export default {
},
sentryDSN: process.env.SENTRY_DSN,
},
plugins: [
'sentry-expo',
],
};
Loading

0 comments on commit 50a2350

Please sign in to comment.