Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
termux
GitHub Repository: termux/termux-app
Path: blob/master/art/copy-to-other-apps.sh
1635 views
1
#!/bin/sh
2
set -e -u
3
4
for APP in api boot styling tasker widget; do
5
APPDIR=../../termux-$APP
6
for file in ic_foreground ic_launcher; do
7
cp ../app/src/main/res/drawable/$file.xml \
8
$APPDIR/app/src/main/res/drawable/$file.xml
9
done
10
11
cp ../app/src/main/res/drawable-anydpi-v26/ic_launcher.xml \
12
$APPDIR/app/src/main/res/drawable-anydpi-v26/$file.xml
13
done
14
15