-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.sh
executable file
·39 lines (30 loc) · 1.37 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# config properties exist or not
if [[ -f configuration/config.properties ]]; then
echo "File exists"
# Simple script to clean install
rm -rf node_modules
rm -rf www
rm package-lock.json
npm install
# Read properties from config.properties
if [[ "$(uname)" == "Darwin" ]] || [[ "$(uname)" == "Linux" ]]; then
APP_NAME=$(grep 'app_name' configuration/config.properties | cut -d'=' -f2)
APP_ID=$(grep 'app_id' configuration/config.properties | cut -d'=' -f2)
else
APP_NAME=$(powershell.exe -Command "(Get-Content -Path 'configuration\config.properties' | Select-String 'app_name').ToString().Split('=')[1].Trim()")
APP_ID=$(powershell.exe -Command "(Get-Content -Path 'configuration\config.properties' | Select-String 'app_id').ToString().Split('=')[1].Trim()")
fi
# Update capacitor.config.ts
sed -i'' -e "s/'app.name'/'$APP_NAME'/" capacitor.config.ts
sed -i'' -e "s/'app.id'/'$APP_ID'/" capacitor.config.ts
echo "updated appname and appid"
# Build your Ionic app, add android, generate icons and build
npx cap add android
# appIcon
npm install fs && node hooks/copyNecessoryFiles.js
npx @capacitor/assets generate --iconBackgroundColor '#ffffff' --iconBackgroundColorDark '#222222'
ionic build --prod && npx cap sync
else
echo "File does not exists"
fi