mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 05:02:45 +01:00
cab6f1bafb
* Implement the mechanics of fxa login on android, but don't show ui for it yet. Also, scopedKeys are not yet implemented. * Hopefully fix the package-lock conflict? * WIP on android scoped keys * Finish implementing login. * created android/user.js to handle android logins
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
const child_process = require('child_process');
|
|
const path = require('path');
|
|
|
|
child_process.execSync('npm run build');
|
|
child_process.execSync(
|
|
`cp -R ${path.resolve(__dirname, '../dist/*')} ${path.resolve(
|
|
__dirname,
|
|
'app/src/main/assets'
|
|
)}`
|
|
);
|