Skip to content

Commit

Permalink
Merge branch 'cmartins-UpdateCompanyInformationForBankAccount' of git…
Browse files Browse the repository at this point in the history
…hub.com:Expensify/App into HEAD
  • Loading branch information
NikkiWines committed Sep 30, 2022
2 parents 41210fc + 204d780 commit e62c5e8
Show file tree
Hide file tree
Showing 94 changed files with 875 additions and 1,012 deletions.
4 changes: 4 additions & 0 deletions .well-known/apple-app-site-association
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
{
"/": "/statements/*",
"comment": "Wallet statements"
},
{
"/": "/concierge/*",
"comment": "Concierge"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1001020800
versionName "1.2.8-0"
versionCode 1001021000
versionName "1.2.10-0"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down
2 changes: 2 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/iou"/>
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/enable-payments"/>
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/statements"/>
<data android:scheme="https" android:host="new.expensify.com" android:pathPrefix="/concierge"/>

<!-- Staging URLs -->
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/r"/>
Expand All @@ -72,6 +73,7 @@
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/iou"/>
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/enable-payments"/>
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/statements"/>
<data android:scheme="https" android:host="staging.new.expensify.com" android:pathPrefix="/concierge"/>
</intent-filter>
</activity>

Expand Down
9 changes: 9 additions & 0 deletions desktop/dev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Development entry point of the desktop app with support for live reload
// We keep this file (dev.js) out Webpack bundling process and provide it raw to Electron
// Reloading Electron on change requires some native Node dependencies which cannot be
// easily bundled with webpack, and we don't really need them bundled for staging/prod
// We are free to load any bundled code from this file, and we load the bundled main.js from dist

// The `dist` folder is not part of the source and does not exist until we build or start Desktop
// eslint-disable-next-line import/extensions
require('./dist/main');
26 changes: 18 additions & 8 deletions desktop/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,35 @@ portfinder.getPortPromise({
port: basePort,
}).then((port) => {
const devServer = `webpack-dev-server --config config/webpack/webpack.dev.js --port ${port} --env platform=desktop`;
const buildMain = 'webpack --config config/webpack/webpack.desktop.js --config-name desktop-main --mode=development';
const buildMain = 'webpack watch --config config/webpack/webpack.desktop.js --config-name desktop-main --mode=development';

const env = {
PORT: port,
NODE_ENV: 'development',
};

const processes = [
{
command: buildMain,
name: 'Main',
prefixColor: 'blue.dim',
env,
},
{
command: devServer,
name: 'Renderer',
prefixColor: 'red.dim',
env,
},
{
command: `${buildMain} && wait-port localhost:${port} && electron desktop/dist/main.js`,
name: 'Main',
command: `wait-port localhost:${port} && npx electronmon ./desktop/dev.js`,
name: 'Electron',
prefixColor: 'cyan.dim',
env: {
PORT: port,
NODE_ENV: 'development',
},
env,
},
];
concurrently(processes, {

return concurrently(processes, {
inputStream: process.stdin,
prefix: 'name',

Expand Down
4 changes: 2 additions & 2 deletions ios/NewExpensify/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.8</string>
<string>1.2.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.2.8.0</string>
<string>1.2.10.0</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/NewExpensifyTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.8</string>
<string>1.2.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.2.8.0</string>
<string>1.2.10.0</string>
</dict>
</plist>
203 changes: 2 additions & 201 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e62c5e8

Please sign in to comment.