mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
* OPS: randombytes work * OPS: porting to RN android: added prompt, refactoring * OPS: better android prompt * FIX: scan qr callback * FIX: correct fee sat calculation for HD & classic segwit wallets * FIX: Fixed height for button in empty transaction list * FIX: keyboard issue on fee selection modal * FIX: slow QR code generation for HD backup screen * ADD: wallet reorder * FIX: TypeError: undefined is not an object (evaluating 'recommendedFees.halfHourFee') #133 * FIX: android appstore link * OPS: Code to Migrate Expo json * REF: renamed blitzhub to lndhub * OPS: Migration: move expo files instead of parsing * FIX: lndhub uri usage * FIX: no security alert on android (it was ios specific) * REF: better tx list rendering and sorting * ADD: verify tx on coinb.in * FIX: Tap to dismiss is not working #137 * REF: Removed Wallet gradients duplication. * REF: about screen * FIX: bech32 qr scan in send screen * FIX: better bip21 handling * Use of dayjs for transaction details * REF: QR code content follows BIP21 * ADD: fee in local currency when send * FIX: Refresh wallet info on page focus
65 lines
1.6 KiB
Text
65 lines
1.6 KiB
Text
# To learn about Buck see [Docs](https://buckbuild.com/).
|
|
# To run your application with Buck:
|
|
# - install Buck
|
|
# - `npm start` - to start the packager
|
|
# - `cd android`
|
|
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
|
|
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
|
|
# - `buck install -r android/app` - compile, install and run application
|
|
#
|
|
|
|
lib_deps = []
|
|
|
|
for jarfile in glob(['libs/*.jar']):
|
|
name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
|
|
lib_deps.append(':' + name)
|
|
prebuilt_jar(
|
|
name = name,
|
|
binary_jar = jarfile,
|
|
)
|
|
|
|
for aarfile in glob(['libs/*.aar']):
|
|
name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
|
|
lib_deps.append(':' + name)
|
|
android_prebuilt_aar(
|
|
name = name,
|
|
aar = aarfile,
|
|
)
|
|
|
|
android_library(
|
|
name = "all-libs",
|
|
exported_deps = lib_deps,
|
|
)
|
|
|
|
android_library(
|
|
name = "app-code",
|
|
srcs = glob([
|
|
"src/main/java/**/*.java",
|
|
]),
|
|
deps = [
|
|
":all-libs",
|
|
":build_config",
|
|
":res",
|
|
],
|
|
)
|
|
|
|
android_build_config(
|
|
name = "build_config",
|
|
package = "io.bluewallet.bluewallet",
|
|
)
|
|
|
|
android_resource(
|
|
name = "res",
|
|
package = "io.bluewallet.bluewallet",
|
|
res = "src/main/res",
|
|
)
|
|
|
|
android_binary(
|
|
name = "app",
|
|
keystore = "//android/keystores:debug",
|
|
manifest = "src/main/AndroidManifest.xml",
|
|
package_type = "debug",
|
|
deps = [
|
|
":app-code",
|
|
],
|
|
)
|