Skip to content

Commit

Permalink
bump to 0.3.1, update app version for eas build
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Mar 1, 2024
1 parent 666b047 commit 0802c3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions config/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ try {
// const IS_DEV = _appVariant === 'dev'
// eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars
// const IS_PREVIEW = _appVariant === 'preview'
const IS_BETA = _appVariant === 'beta'
const IS_PROD = _appVariant === 'prod'

const cameraPermission = 'eNuts requires access to your camera to scan QR codes for wallet transactions.'
Expand All @@ -58,7 +59,7 @@ const config: ExpoConfig = {
'ios',
'android',
],
version: `${version}${!IS_PROD ? `-${_appVariant}` : ''}`,
version: `${version}${!IS_PROD && !IS_BETA ? `-${_appVariant}` : ''}`,
scheme: ['cashu', 'lightning'],
orientation: 'portrait',
icon: './assets/app-icon-all.png',
Expand All @@ -85,7 +86,7 @@ const config: ExpoConfig = {
usesNonExemptEncryption: false
},
bundleIdentifier: 'xyz.elliptica.enuts',
buildNumber: '5'
buildNumber: '1'
},
android: {
icon: './assets/app-icon-android-legacy.png',
Expand Down
3 changes: 2 additions & 1 deletion eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
}
},
"submit": {
"production": {}
"production": {},
"beta": {}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
"blind-signatures",
"lightning-network"
],
"version": "0.3.0",
"version": "0.3.1",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/cashubtc/eNuts/issues"
Expand Down

0 comments on commit 0802c3a

Please sign in to comment.