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>
This commit is contained in:
cyan 2024-11-25 15:08:30 +01:00 committed by GitHub
parent cfe78d4e5f
commit 505ea26533
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
49 changed files with 841 additions and 714 deletions

View file

@ -1,5 +1,5 @@
#!/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
@ -15,9 +15,8 @@ get_current_branch() {
update_app_properties() {
local branch=$1
local file_path="./android/app.properties"
sed -i "s/^id=.*/id=com.cakewallet.$branch/" "$file_path"
sed -i "s/^name=.*/name=$branch-Cake Wallet/" "$file_path"
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