mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
6414364602
* New price API * Fix test app package id * Fix workflow * change environment variable to use pr number [skip ci] * Fix un-needed padding * Fix raw value for usdtSol * Remove duplicate fetching for balance and transactions at start [skip ci] * Fix address validation of spl tokens * Add Service Status * Update lib/src/widgets/service_status_tile.dart Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> * Update lib/src/widgets/services_updates_widget.dart Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> * Update monero version * update sodium script * Change automatic priority fee rate --------- Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
17 lines
No EOL
526 B
Bash
Executable file
17 lines
No EOL
526 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./config.sh
|
|
|
|
SODIUM_PATH="${EXTERNAL_IOS_SOURCE_DIR}/libsodium"
|
|
SODIUM_URL="https://github.com/jedisct1/libsodium.git"
|
|
|
|
echo "============================ SODIUM ============================"
|
|
|
|
echo "Cloning SODIUM from - $SODIUM_URL"
|
|
git clone $SODIUM_URL $SODIUM_PATH
|
|
cd $SODIUM_PATH
|
|
git checkout 443617d7507498f7477703f0b51cb596d4539262
|
|
./dist-build/apple-xcframework.sh
|
|
|
|
mv ${SODIUM_PATH}/libsodium-apple/ios/include/* $EXTERNAL_IOS_INCLUDE_DIR
|
|
mv ${SODIUM_PATH}/libsodium-apple/ios/lib/* $EXTERNAL_IOS_LIB_DIR |