HathorNetwork / hathor-wallet-mobile

Hathor official mobile wallet
https://hathor.network/
MIT License
24 stars 22 forks source link

feat: Bumps Android target SDK to 34 #562

Closed tuliomir closed 1 week ago

tuliomir commented 1 week ago

Acceptance Criteria

Notes about build environment

The application build was run on Ubuntu 22, with the following devices working successfully

To ensure the build was being executed in an environment as reproducible as possible, the following cache clearing script was used:

#!/bin/bash

# Clear global android cache of NDK's
rm -rf /home/my_user/Android/Sdk/ndk/*

# Clear all builds within the project
rm -rf /home/my_user/mobile-wallet/android/.gradle
rm -rf /home/my_user/mobile-wallet/android/build
rm -rf /home/my_user/mobile-wallet/android/app/build

# Clear all leaking gradle processes
cd ~/mobile-wallet/android
./gradlew --stop
pkill -9 -f gradle
cd ~/

Security Checklist