diff --git a/android/app/build.gradle b/android/app/build.gradle index 37ca932255d1..bd11afc5684c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -149,8 +149,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001011608 - versionName "1.1.16-8" + versionCode 1001011609 + versionName "1.1.16-9" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index bc346cf06b02..cbd23dd985ba 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -31,7 +31,7 @@ CFBundleVersion - 1.1.16.8 + 1.1.16.9 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 4bec7322479a..cff0516ad211 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.16.8 + 1.1.16.9 diff --git a/package-lock.json b/package-lock.json index 7916c7a3d4fe..a9dbf391c7f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.16-8", + "version": "1.1.16-9", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ce7dfc73ce9e..a8e56bcfbd99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.16-8", + "version": "1.1.16-9", "author": "Expensify, Inc.", "homepage": "https://new.expensify.com", "description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.", diff --git a/src/CONST.js b/src/CONST.js index b62c38fb0057..bcbd01937263 100755 --- a/src/CONST.js +++ b/src/CONST.js @@ -137,7 +137,7 @@ const CONST = { PRIVACY_URL: 'https://use.expensify.com/privacy', LICENSES_URL: 'https://use.expensify.com/licenses', PLAY_STORE_URL: 'https://play.google.com/store/apps/details?id=com.expensify.chat&hl=en', - ADD_SECONDARY_LOGIN_URL: 'settings?param={%22section%22:%22account%22}', + ADD_SECONDARY_LOGIN_URL: encodeURI('settings?param={"section":"account","openModal":"secondaryLogin"}'), MANAGE_CARDS_URL: 'domain_companycards', FEES_URL: 'https://use.expensify.com/fees', CFPB_PREPAID_URL: 'https://cfpb.gov/prepaid', diff --git a/src/pages/ReimbursementAccount/EnableStep.js b/src/pages/ReimbursementAccount/EnableStep.js index a2dbefbae0df..b9fbb008a32f 100644 --- a/src/pages/ReimbursementAccount/EnableStep.js +++ b/src/pages/ReimbursementAccount/EnableStep.js @@ -76,7 +76,7 @@ class EnableStep extends React.Component { title: this.props.translate('workspace.bankAccount.addWorkEmail'), icon: Mail, onPress: () => { - openOldDotLink('settings?param={"section":"account","openModal":"secondaryLogin"}'); + openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL); subscribeToExpensifyCardUpdates(); }, shouldShowRightIcon: true, diff --git a/src/pages/workspace/card/WorkspaceCardVBANoECardView.js b/src/pages/workspace/card/WorkspaceCardVBANoECardView.js index b0a143519c0e..0f45d1bd486a 100644 --- a/src/pages/workspace/card/WorkspaceCardVBANoECardView.js +++ b/src/pages/workspace/card/WorkspaceCardVBANoECardView.js @@ -13,6 +13,7 @@ import {openOldDotLink} from '../../../libs/actions/Link'; import {subscribeToExpensifyCardUpdates} from '../../../libs/actions/User'; import ONYXKEYS from '../../../ONYXKEYS'; import compose from '../../../libs/compose'; +import CONST from '../../../CONST'; const propTypes = { ...withLocalizePropTypes, @@ -28,7 +29,7 @@ const WorkspaceCardVBANoECardView = props => ( title: props.translate('workspace.card.addWorkEmail'), onPress: () => { Navigation.dismissModal(); - openOldDotLink('settings?param={"section":"account","openModal":"secondaryLogin"}'); + openOldDotLink(CONST.ADD_SECONDARY_LOGIN_URL); subscribeToExpensifyCardUpdates(); }, icon: Mail,