mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-05 06:45:49 +00:00
* multiplatform: file structure * apk file name * more paths in sources * lint issues and apk file name
15 lines
664 B
Bash
Executable File
15 lines
664 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# it can be tested in the browser from dist folder
|
|
cp ./src/call.html ./dist/call.html
|
|
cp ./src/style.css ./dist/style.css
|
|
cp ./node_modules/lz-string/libs/lz-string.min.js ./dist/lz-string.min.js
|
|
cp ./src/webcall.html ./dist/webcall.html
|
|
cp ./src/ui.js ./dist/ui.js
|
|
|
|
# copy to android app
|
|
cp ./src/call.html ../../apps/multiplatform/android/src/main/assets/www/call.html
|
|
cp ./src/style.css ../../apps/multiplatform/android/src/main/assets/www/style.css
|
|
cp ./dist/call.js ../../apps/multiplatform/android/src/main/assets/www/call.js
|
|
cp ./node_modules/lz-string/libs/lz-string.min.js ../../apps/multiplatform/android/src/main/assets/www/lz-string.min.js
|