cake_wallet/run-android.sh
cyan 505ea26533
CW-798 Fix macos 15 issues (#1775)
* update flutter to 3.24.3

* bump flutter to 3.24.4, fix all android issues (i hope)

* update uni_links path

* update sensitive_clipboard

* update dependencies

* update fast_scanner

* update the ref

* Update how_to_add_new_wallet_type.md [skip ci]

* Update how_to_add_new_wallet_type.md [skip ci]

* Update how_to_add_new_wallet_type.md [skip ci]

* Update how_to_add_new_wallet_type.md [skip ci]

---------

Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-11-25 16:08:30 +02:00

29 lines
836 B
Bash
Executable file

#!/bin/bash
source "$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/universal_sed.sh"
# Get the current git branch
get_current_branch() {
if git rev-parse --git-dir > /dev/null 2>&1; then
branch=$(git rev-parse --abbrev-ref HEAD)
echo "$branch" | tr '-' '_'
else
echo "Error: Not a git repository."
return 1
fi
}
# Update the app.properties file
update_app_properties() {
local branch=$1
local file_path="./android/app.properties"
universal_sed "s/^id=.*/id=com.cakewallet.$branch/" "$file_path"
universal_sed "s/^name=.*/name=$branch-Cake Wallet/" "$file_path"
}
# only update app.properties if getting the current branch was successful
current_branch=$(get_current_branch)
if [[ $? -eq 0 ]]; then
update_app_properties "$current_branch"
fi
# run the app
flutter run