2022-05-04 23:07:26 +01:00
|
|
|
#!/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
|
2022-05-16 19:27:58 +01:00
|
|
|
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
|
2022-05-04 23:07:26 +01:00
|
|
|
|
|
|
|
# copy to android app
|
2023-06-29 14:53:11 +03:00
|
|
|
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
|