mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-24 17:25:42 +00:00
f2036236f6
* building towards ios calls * minor ios changes * linting * RPC calls with webview * tidy up * more types * ios: webrtc types, call works * remove comment * prettier * add prettier to build Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
11 lines
370 B
Bash
Executable File
11 lines
370 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
|
|
|
|
# copy to android app
|
|
cp ./src/call.html ../../apps/android/app/src/main/assets/www/call.html
|
|
cp ./src/style.css ../../apps/android/app/src/main/assets/www/style.css
|
|
cp ./dist/call.js ../../apps/android/app/src/main/assets/www/call.js
|