├── .dockerignore ├── .github └── workflows │ ├── ci.yml │ └── rc.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── Dockerfile ├── LICENSE ├── LVL ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── google │ └── android │ └── vending │ └── licensing │ ├── AESObfuscator.java │ ├── DeviceLimiter.java │ ├── ILicenseResultListener.java │ ├── ILicensingService.java │ ├── LicenseChecker.java │ ├── LicenseCheckerCallback.java │ ├── LicenseValidator.java │ ├── NullDeviceLimiter.java │ ├── Obfuscator.java │ ├── Policy.java │ ├── PreferenceObfuscator.java │ ├── ResponseData.java │ ├── ServerManagedPolicy.java │ ├── StrictPolicy.java │ ├── ValidationException.java │ └── util │ ├── Base64.java │ └── Base64DecoderException.java ├── README.md ├── apkdiff.py ├── backuputil ├── Readme.md ├── build.gradle └── src │ ├── main │ └── java │ │ └── com │ │ └── mrd │ │ └── bitlib │ │ └── BackupUtil.java │ └── test │ └── java │ └── com │ └── mrd │ └── bitlib │ └── BackupUtilTest.java ├── bitlib ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle └── src │ ├── main │ └── java │ │ ├── Rijndael │ │ └── Rijndael.java │ │ ├── com │ │ ├── megiontechnologies │ │ │ ├── BitcoinBase.java │ │ │ ├── BitcoinCash.java │ │ │ └── Bitcoins.java │ │ └── mrd │ │ │ └── bitlib │ │ │ ├── FeeEstimator.kt │ │ │ ├── FeeEstimatorBuilder.kt │ │ │ ├── PopBuilder.kt │ │ │ ├── SigningRequest.kt │ │ │ ├── StandardTransactionBuilder.kt │ │ │ ├── TransactionUtils.java │ │ │ ├── UnsignedTransaction.kt │ │ │ ├── bitcoinj │ │ │ └── Base58.java │ │ │ ├── crypto │ │ │ ├── Bip38.java │ │ │ ├── Bip39.java │ │ │ ├── BipDerivationType.kt │ │ │ ├── BipSss.kt │ │ │ ├── BitcoinSigner.kt │ │ │ ├── Ecdh.kt │ │ │ ├── Gf256.java │ │ │ ├── Gf65536.kt │ │ │ ├── HDKeyMagic.kt │ │ │ ├── HdKeyManager.java │ │ │ ├── HdKeyNode.java │ │ │ ├── Hmac.java │ │ │ ├── HmacPRNG.java │ │ │ ├── IPrivateKeyRing.java │ │ │ ├── IPublicKeyRing.java │ │ │ ├── InMemoryPrivateKey.kt │ │ │ ├── KeyExporter.java │ │ │ ├── MrdExport.java │ │ │ ├── PrivateKey.kt │ │ │ ├── PrivateKeyRing.java │ │ │ ├── PublicKey.kt │ │ │ ├── PublicKeyRing.java │ │ │ ├── RandomSource.java │ │ │ ├── Signature.java │ │ │ ├── Signatures.java │ │ │ ├── SignedMessage.java │ │ │ ├── SpinnerPrivateUri.java │ │ │ ├── WrongSignatureException.java │ │ │ ├── digest │ │ │ │ ├── GeneralDigest.java │ │ │ │ └── RIPEMD160Digest.java │ │ │ ├── ec │ │ │ │ ├── Curve.java │ │ │ │ ├── EcTools.java │ │ │ │ ├── FieldElement.java │ │ │ │ ├── Parameters.kt │ │ │ │ ├── Point.java │ │ │ │ └── package-info.kt │ │ │ ├── package-info.kt │ │ │ └── schnorr │ │ │ │ ├── SchnorrSign.kt │ │ │ │ ├── SchnorrSignature.kt │ │ │ │ ├── SchnorrVerify.kt │ │ │ │ ├── UnauthorisedException.java │ │ │ │ └── Util.java │ │ │ ├── lambdaworks │ │ │ └── crypto │ │ │ │ ├── Base64.java │ │ │ │ ├── PBKDF.java │ │ │ │ └── SCrypt.java │ │ │ ├── model │ │ │ ├── AddressType.kt │ │ │ ├── Bech32.java │ │ │ ├── BitcoinAddress.java │ │ │ ├── BitcoinTransaction.kt │ │ │ ├── Block.java │ │ │ ├── CompactInt.java │ │ │ ├── ConfirmationRiskProfile.java │ │ │ ├── IndependentTransactionOutput.java │ │ │ ├── InputWitness.kt │ │ │ ├── NetworkParameters.java │ │ │ ├── OutPoint.kt │ │ │ ├── OutputList.java │ │ │ ├── Script.java │ │ │ ├── ScriptInput.java │ │ │ ├── ScriptInputCoinbase.java │ │ │ ├── ScriptInputP2PKH.kt │ │ │ ├── ScriptInputP2SHMultisig.java │ │ │ ├── ScriptInputP2TR.kt │ │ │ ├── ScriptInputP2WPKH.kt │ │ │ ├── ScriptInputP2WSH.kt │ │ │ ├── ScriptInputPubKey.java │ │ │ ├── ScriptInputStandard.java │ │ │ ├── ScriptOutput.java │ │ │ ├── ScriptOutputError.java │ │ │ ├── ScriptOutputMsg.java │ │ │ ├── ScriptOutputOpReturn.java │ │ │ ├── ScriptOutputP2PKH.java │ │ │ ├── ScriptOutputP2SH.java │ │ │ ├── ScriptOutputP2TR.kt │ │ │ ├── ScriptOutputP2WPKH.kt │ │ │ ├── ScriptOutputPubkey.java │ │ │ ├── ScriptOutputStrange.java │ │ │ ├── SegwitAddress.java │ │ │ ├── TransactionInput.java │ │ │ ├── TransactionOutput.java │ │ │ ├── UnspentTransactionOutput.java │ │ │ ├── hdpath │ │ │ │ └── HdKeyPath.java │ │ │ └── signature │ │ │ │ ├── TaprootCommonSignatureMessageBuilder.kt │ │ │ │ └── WitnessSignatureMessageBuilder.kt │ │ │ └── util │ │ │ ├── BitUtils.java │ │ │ ├── BitlibJsonModule.java │ │ │ ├── ByteReader.java │ │ │ ├── ByteWriter.java │ │ │ ├── CoinUtil.java │ │ │ ├── HashUtils.java │ │ │ ├── HexUtils.java │ │ │ ├── KeyUtils.kt │ │ │ ├── Sha256Hash.java │ │ │ ├── Sha512Hash.java │ │ │ ├── SslUtils.java │ │ │ ├── StringUtils.java │ │ │ ├── TaprootUtils.kt │ │ │ ├── VarInt.java │ │ │ └── X509Utils.java │ │ └── se │ │ └── grunka │ │ └── fortuna │ │ ├── Counter.java │ │ ├── Encryption.java │ │ ├── Fortuna.java │ │ ├── Generator.java │ │ ├── Pool.java │ │ ├── Util.java │ │ ├── accumulator │ │ ├── Accumulator.java │ │ ├── Context.java │ │ ├── EntropySource.java │ │ ├── EventAdder.java │ │ ├── EventAdderImpl.java │ │ ├── EventScheduler.java │ │ └── EventSchedulerImpl.java │ │ └── entropy │ │ ├── FreeMemoryEntropySource.java │ │ ├── GarbageCollectorEntropySource.java │ │ ├── LoadAverageEntropySource.java │ │ ├── PlatformEntropySource.java │ │ ├── SchedulingEntropySource.java │ │ ├── ThreadTimeEntropySource.java │ │ └── UptimeEntropySource.java │ └── test │ └── java │ ├── com │ └── mrd │ │ └── bitlib │ │ ├── Base58Test.java │ │ ├── Bip39Test.java │ │ ├── BuildEncodingTest.java │ │ ├── MixedTransactionBuilderTest.kt │ │ ├── SegWitTransactionTest.kt │ │ ├── StandardTransactionBuilderTest.kt │ │ ├── TaprootTransactionTest.kt │ │ ├── crypto │ │ ├── Bip38Test.kt │ │ ├── BipSssTest.kt │ │ ├── DeterministicSignatureValueTest.kt │ │ ├── EcdhTest.java │ │ ├── Gf256Test.java │ │ ├── Gf65536Test.kt │ │ ├── HdKeyNodeTest.kt │ │ ├── HmacTest.java │ │ ├── MrdExportTest.java │ │ ├── PublicKeyTest.kt │ │ ├── SchnorrSignTest.kt │ │ ├── SchnorrVerifyTest.kt │ │ ├── SignatureSValueTest.java │ │ ├── SpinnerImportTest.java │ │ ├── StandardBitcoinSigning.java │ │ ├── TestNonRandomSource.java │ │ └── ec │ │ │ └── EcToolsTest.kt │ │ ├── model │ │ ├── AddressTest.kt │ │ ├── Bech32Test.kt │ │ ├── ScriptOutputOpReturnTest.java │ │ ├── ScriptTest.java │ │ ├── TaprootCommonSignatureMessageBuilderTest.kt │ │ ├── TransactionInputTest.java │ │ └── TransactionTest.java │ │ └── util │ │ ├── BitUtilTest.java │ │ ├── HexUtilsTest.java │ │ └── Sha512Test.java │ └── se │ └── grunka │ └── fortuna │ ├── CounterTest.java │ ├── FortunaTest.java │ ├── GeneratorTest.java │ ├── PoolTest.java │ ├── entropy │ ├── FreeMemoryEntropySourceTest.java │ ├── GarbageCollectorEntropySourceTest.java │ ├── LoadAverageEntropySourceTest.java │ ├── PlatformEntropySourceTest.java │ ├── SchedulingEntropySourceTest.java │ ├── ThreadTimeEntropySourceTest.java │ └── UptimeEntropySourceTest.java │ └── tests │ ├── Dump.java │ └── Image.java ├── btchip ├── AndroidManifest.xml ├── README.md ├── build.gradle └── src │ └── main │ ├── aidl │ └── com │ │ └── ledger │ │ └── wallet │ │ └── service │ │ ├── ILedgerWalletService.aidl │ │ └── ServiceResult.aidl │ └── java │ └── com │ ├── btchip │ ├── BTChipConstants.java │ ├── BTChipDongle.java │ ├── BTChipException.java │ ├── BTChipKeyRecovery.java │ ├── BitcoinTransaction.java │ ├── comm │ │ ├── BTChipTransport.java │ │ ├── BTChipTransportFactory.java │ │ ├── BTChipTransportFactoryCallback.java │ │ ├── LedgerHelper.java │ │ └── android │ │ │ ├── BTChipTransportAndroid.java │ │ │ ├── BTChipTransportAndroidHID.java │ │ │ ├── BTChipTransportAndroidNFC.java │ │ │ ├── BTChipTransportAndroidWinUSB.java │ │ │ ├── ConnectionFailException.java │ │ │ └── UsbReceiver.kt │ └── utils │ │ ├── BIP32Utils.java │ │ ├── BufferUtils.java │ │ ├── CoinFormatUtils.java │ │ ├── Dump.java │ │ ├── FutureUtils.java │ │ ├── KeyUtils.java │ │ ├── SignatureUtils.java │ │ └── VarintUtils.java │ └── ledger │ ├── tbase │ └── comm │ │ ├── LedgerTransportTEEProxy.java │ │ └── LedgerTransportTEEProxyFactory.java │ └── wallet │ └── service │ └── ServiceResult.java ├── checkBuild.sh ├── collectApks.sh ├── crowdin.yml ├── debug.keystore ├── docs ├── images │ └── accs.png └── multi-currency.md ├── ext_settings.gradle ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── integration-test.gradle ├── libs ├── README.md ├── netcipher-2.2.1.jar └── nordpol │ ├── LICENSE │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── nordpol │ ├── IsoCard.java │ ├── OnCardErrorListener.java │ └── android │ ├── AndroidCard.java │ ├── OnDiscoveredTagListener.java │ └── TagDispatcher.java ├── lt-api ├── .gitignore ├── README.md ├── build.gradle └── src │ ├── main │ └── java │ │ └── com │ │ └── mycelium │ │ └── lt │ │ ├── ApiUtils.java │ │ ├── ChatMessageEncryptionKey.java │ │ ├── InputValidator.java │ │ ├── api │ │ ├── LtApi.java │ │ ├── LtApiClient.java │ │ ├── LtApiException.java │ │ ├── LtConst.java │ │ ├── LtRequest.java │ │ ├── LtResponse.java │ │ ├── model │ │ │ ├── ActionState.java │ │ │ ├── Ad.java │ │ │ ├── AdSearchItem.java │ │ │ ├── AdType.java │ │ │ ├── BtcSellPrice.java │ │ │ ├── Captcha.java │ │ │ ├── ChatEntry.java │ │ │ ├── GeocoderSearchResults.java │ │ │ ├── GpsLocation.java │ │ │ ├── LtSession.java │ │ │ ├── PriceFormula.java │ │ │ ├── PublicTraderInfo.java │ │ │ ├── SellOrder.java │ │ │ ├── SellOrderSearchItem.java │ │ │ ├── TradeSession.java │ │ │ └── TraderInfo.java │ │ └── params │ │ │ ├── AdParameters.java │ │ │ ├── BtcSellPriceParameters.java │ │ │ ├── CreateTradeParameters.java │ │ │ ├── EncryptedChatMessageParameters.java │ │ │ ├── InstantBuyOrderParameters.java │ │ │ ├── LoginParameters.java │ │ │ ├── ReleaseBtcParameters.java │ │ │ ├── SearchParameters.java │ │ │ ├── SetTradeReceivingAddressParameters.java │ │ │ ├── TradeChangeParameters.java │ │ │ ├── TradeParameters.java │ │ │ └── TraderParameters.java │ │ └── location │ │ ├── AddressComponent.java │ │ ├── Area.java │ │ ├── Geocode.java │ │ ├── GeocodeResponse.java │ │ ├── Geocoder.java │ │ ├── Geometry.java │ │ ├── Location.java │ │ └── RemoteGeocodeException.java │ └── test │ ├── java │ └── com │ │ └── mycelium │ │ └── lt │ │ ├── InputValidatorTest.java │ │ ├── ManualTest.java │ │ ├── MessageEncryptionTest.java │ │ └── api │ │ └── model │ │ └── TradeSessionTest.java │ └── resources │ ├── exampleWithPostcode.json │ └── ungargasse.json ├── mbw ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── google-services.json ├── integrationHowTo.md ├── lint-baseline.xml ├── lint.xml ├── res-sources │ ├── creditCard.png │ ├── licenses.md │ ├── localTraderLocalOnly.png │ ├── localTraderLocalOnly.xcf │ ├── mycelium_logo_transp.png │ └── updateDrawables.sh ├── src │ ├── androidTest │ │ └── java │ │ │ ├── com.mycelium.wallet.bitid │ │ │ └── BitIdAsyncTaskTest.java │ │ │ └── com │ │ │ └── mycelium │ │ │ ├── giftbox │ │ │ └── client │ │ │ │ ├── ImageTest.kt │ │ │ │ └── MCGiftboxApiRepositoryTest.kt │ │ │ └── wallet │ │ │ ├── AndroidRandomSourceTest.java │ │ │ ├── CommonKeys.kt │ │ │ ├── TokensTest.kt │ │ │ ├── activity │ │ │ ├── ActivityIdlingResource.kt │ │ │ ├── BackupTest.kt │ │ │ ├── InstantMasterseedActivityTest.kt │ │ │ ├── MessageVerifyActivityTest.kt │ │ │ ├── SendAssetsTest.kt │ │ │ ├── SendMainActivityTest.kt │ │ │ ├── Utils.kt │ │ │ ├── ViewVisibilityIdlingResource.kt │ │ │ └── settings │ │ │ │ └── SetSegwitChangeActivityTest.kt │ │ │ ├── external │ │ │ └── changelly │ │ │ │ └── ChangellyHeaderInterceptorTest.kt │ │ │ ├── extsig │ │ │ ├── keepkey │ │ │ │ └── activity │ │ │ │ │ └── KeepKeyAccountImportActivityTest.kt │ │ │ ├── ledger │ │ │ │ └── activity │ │ │ │ │ └── LedgerAccountImportActivityTest.kt │ │ │ └── trezor │ │ │ │ └── activity │ │ │ │ ├── TrezorAccountImportActivityTest.kt │ │ │ │ └── TrezorSignTransactionActivityTest.kt │ │ │ └── wapi │ │ │ └── SqliteBtcWalletManagerBackingTest.kt │ ├── btctestnet │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── startup_activity.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── btctestnetDebug │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable │ │ │ └── ic_launcher_foreground.xml │ ├── huaweiProdnet │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── huaweiProdnetDebug │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable │ │ │ └── ic_launcher_foreground.xml │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── countries.json │ │ │ ├── nodes-b.json │ │ │ ├── token-logos │ │ │ │ ├── 1inch_logo.png │ │ │ │ ├── aave_logo.png │ │ │ │ ├── abyss_logo.png │ │ │ │ ├── ankr_logo.png │ │ │ │ ├── ant_logo.png │ │ │ │ ├── arn_logo.png │ │ │ │ ├── atl_logo.png │ │ │ │ ├── atls_logo.png │ │ │ │ ├── axs_logo.png │ │ │ │ ├── bat_logo.png │ │ │ │ ├── bix_logo.png │ │ │ │ ├── bnb_logo.png │ │ │ │ ├── bnt_logo.png │ │ │ │ ├── brd_logo.png │ │ │ │ ├── btc_logo.png │ │ │ │ ├── btm_logo.png │ │ │ │ ├── busd_logo.png │ │ │ │ ├── cake_logo.png │ │ │ │ ├── cennz_logo.png │ │ │ │ ├── chr_logo.png │ │ │ │ ├── chsb_logo.png │ │ │ │ ├── chz_logo.png │ │ │ │ ├── cl_logo.png │ │ │ │ ├── comp_logo.png │ │ │ │ ├── cro_logo.png │ │ │ │ ├── crpt_logo.png │ │ │ │ ├── crv_logo.png │ │ │ │ ├── cvc_logo.png │ │ │ │ ├── dai_logo.png │ │ │ │ ├── data_logo.png │ │ │ │ ├── dcn_logo.png │ │ │ │ ├── dent_logo.png │ │ │ │ ├── dgd_logo.png │ │ │ │ ├── dydx_logo.png │ │ │ │ ├── elf_logo.png │ │ │ │ ├── eng_logo.png │ │ │ │ ├── enj_logo.png │ │ │ │ ├── eth_logo.png │ │ │ │ ├── ftm_logo.png │ │ │ │ ├── ftt_logo.png │ │ │ │ ├── fx_logo.png │ │ │ │ ├── fxc_logo.png │ │ │ │ ├── gala_logo.png │ │ │ │ ├── gno_logo.png │ │ │ │ ├── gnt_logo.png │ │ │ │ ├── grt_logo.png │ │ │ │ ├── gusd_logo.png │ │ │ │ ├── hedg_logo.png │ │ │ │ ├── hex_logo.png │ │ │ │ ├── hot_logo.png │ │ │ │ ├── ht_logo.png │ │ │ │ ├── husd_logo.png │ │ │ │ ├── hyn_logo.png │ │ │ │ ├── icx_logo.png │ │ │ │ ├── ilv_logo.png │ │ │ │ ├── iost_logo.png │ │ │ │ ├── kcs_logo.png │ │ │ │ ├── knc_logo.png │ │ │ │ ├── la_logo.png │ │ │ │ ├── lamb_logo.png │ │ │ │ ├── lend_logo.png │ │ │ │ ├── leo_logo.png │ │ │ │ ├── link_logo.png │ │ │ │ ├── loom_logo.png │ │ │ │ ├── lrc_logo.png │ │ │ │ ├── mana_logo.png │ │ │ │ ├── mass_logo.png │ │ │ │ ├── matic_logo.png │ │ │ │ ├── mco_logo.png │ │ │ │ ├── mkr_logo.png │ │ │ │ ├── mt_logo.png │ │ │ │ ├── mtl_logo.png │ │ │ │ ├── mydfs_logo.png │ │ │ │ ├── nexo_logo.png │ │ │ │ ├── nmr_logo.png │ │ │ │ ├── ogn_logo.png │ │ │ │ ├── okb_logo.png │ │ │ │ ├── omg_logo.png │ │ │ │ ├── pax_logo.png │ │ │ │ ├── paxg_logo.png │ │ │ │ ├── poly_logo.png │ │ │ │ ├── powr_logo.png │ │ │ │ ├── qnt_logo.png │ │ │ │ ├── rcn_logo.png │ │ │ │ ├── ren_logo.png │ │ │ │ ├── rep_logo.png │ │ │ │ ├── rlc_logo.png │ │ │ │ ├── rndr_logo.png │ │ │ │ ├── rpl_logo.png │ │ │ │ ├── sai_logo.png │ │ │ │ ├── sand_logo.png │ │ │ │ ├── shib_logo.png │ │ │ │ ├── snt_logo.png │ │ │ │ ├── snx_logo.png │ │ │ │ ├── storj_logo.png │ │ │ │ ├── sushi_logo.png │ │ │ │ ├── sxp_logo.png │ │ │ │ ├── theta_logo.png │ │ │ │ ├── trb_logo.png │ │ │ │ ├── tusd_logo.png │ │ │ │ ├── uni_logo.png │ │ │ │ ├── uqc_logo.png │ │ │ │ ├── usdc_logo.png │ │ │ │ ├── usdt20_logo.png │ │ │ │ ├── usdt_logo.png │ │ │ │ ├── ven_logo.png │ │ │ │ ├── wbtc_logo.png │ │ │ │ ├── xaut_logo.png │ │ │ │ ├── xin_logo.png │ │ │ │ ├── xyo_logo.png │ │ │ │ ├── yfi_logo.png │ │ │ │ ├── zb_logo.png │ │ │ │ └── zrx_logo.png │ │ │ └── trusted_packages.json │ │ ├── java │ │ │ ├── com │ │ │ │ ├── commonsware │ │ │ │ │ └── cwac │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ └── AdapterWrapper.java │ │ │ │ │ │ └── endless │ │ │ │ │ │ └── EndlessAdapter.java │ │ │ │ └── mycelium │ │ │ │ │ ├── bequant │ │ │ │ │ ├── BQExchangeRateManager.kt │ │ │ │ │ ├── BequantConstants.kt │ │ │ │ │ ├── BequantPreference.kt │ │ │ │ │ ├── InvestmentAccount.kt │ │ │ │ │ ├── InvestmentModule.kt │ │ │ │ │ ├── common │ │ │ │ │ │ ├── BQDatePickerDialog.kt │ │ │ │ │ │ ├── BlurBuilder.kt │ │ │ │ │ │ ├── ChoseCoinFragment.kt │ │ │ │ │ │ ├── CountryFailFragment.kt │ │ │ │ │ │ ├── ErrorHandler.kt │ │ │ │ │ │ ├── LoaderFragment.kt │ │ │ │ │ │ ├── ModalDialog.kt │ │ │ │ │ │ ├── ModelExtension.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ └── CoinAdapter.kt │ │ │ │ │ │ ├── holder │ │ │ │ │ │ │ └── CoinHolder.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── CoinListItem.kt │ │ │ │ │ ├── exchange │ │ │ │ │ │ ├── CoinAdapter.kt │ │ │ │ │ │ ├── SelectCoinActivity.kt │ │ │ │ │ │ ├── SelectCoinFragment.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── CoinListItem.kt │ │ │ │ │ ├── intro │ │ │ │ │ │ ├── BequantIntroActivity.kt │ │ │ │ │ │ ├── IntroPagerAdapter.kt │ │ │ │ │ │ └── IntroPages.kt │ │ │ │ │ ├── kyc │ │ │ │ │ │ ├── BequantKycActivity.kt │ │ │ │ │ │ ├── BequantKycViewModel.kt │ │ │ │ │ │ ├── FinalPresubmitFragment.kt │ │ │ │ │ │ ├── PendingFragment.kt │ │ │ │ │ │ ├── StartFragment.kt │ │ │ │ │ │ ├── callback │ │ │ │ │ │ │ ├── CallbackApprovedFragment.kt │ │ │ │ │ │ │ ├── CallbackIncompleteFragment.kt │ │ │ │ │ │ │ └── CallbackRejectedFragment.kt │ │ │ │ │ │ ├── checkCode │ │ │ │ │ │ │ ├── VerifyPhoneFragment.kt │ │ │ │ │ │ │ └── VerifyPhoneViewModel.kt │ │ │ │ │ │ ├── inputPhone │ │ │ │ │ │ │ └── coutrySelector │ │ │ │ │ │ │ │ ├── CountriesAdapter.kt │ │ │ │ │ │ │ │ ├── CountriesSource.kt │ │ │ │ │ │ │ │ ├── CountryModel.kt │ │ │ │ │ │ │ │ ├── CountrySelectorFragment.kt │ │ │ │ │ │ │ │ ├── CountrySelectorViewModel.kt │ │ │ │ │ │ │ │ └── NationalityModel.kt │ │ │ │ │ │ ├── steps │ │ │ │ │ │ │ ├── DocumentAttachDialog.kt │ │ │ │ │ │ │ ├── Step1Fragment.kt │ │ │ │ │ │ │ ├── Step2Fragment.kt │ │ │ │ │ │ │ ├── Step3Fragment.kt │ │ │ │ │ │ │ ├── Step4Fragment.kt │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ │ ├── DocumentAdapter.kt │ │ │ │ │ │ │ │ ├── StepAdapter.kt │ │ │ │ │ │ │ │ └── StepState.kt │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ │ ├── DocumentViewModel.kt │ │ │ │ │ │ │ │ ├── HeaderViewModel.kt │ │ │ │ │ │ │ │ ├── InputPhoneViewModel.kt │ │ │ │ │ │ │ │ ├── Step1ViewModel.kt │ │ │ │ │ │ │ │ └── Step2ViewModel.kt │ │ │ │ │ │ └── verticalStepper │ │ │ │ │ │ │ ├── VerticalStepperItemCircleView.kt │ │ │ │ │ │ │ └── VerticalStepperItemView.kt │ │ │ │ │ ├── market │ │ │ │ │ │ ├── AccountFragment.kt │ │ │ │ │ │ ├── BequantMarketActivity.kt │ │ │ │ │ │ ├── ExchangeFragment.kt │ │ │ │ │ │ ├── MarketFragment.kt │ │ │ │ │ │ ├── MarketsFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── BequantAccountAdapter.kt │ │ │ │ │ │ │ ├── MarketAdapter.kt │ │ │ │ │ │ │ ├── MarketFragmentAdapter.kt │ │ │ │ │ │ │ └── SelectCoinFragmentAdapter.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── AccountViewModel.kt │ │ │ │ │ │ │ ├── ExchangeViewModel.kt │ │ │ │ │ │ │ └── MarketItem.kt │ │ │ │ │ ├── receive │ │ │ │ │ │ ├── FromMyceliumFragment.kt │ │ │ │ │ │ ├── ReceiveFragment.kt │ │ │ │ │ │ ├── SelectAccountFragment.kt │ │ │ │ │ │ ├── ShowQRFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── AccountAdapter.kt │ │ │ │ │ │ │ ├── AccountPagerAdapter.kt │ │ │ │ │ │ │ ├── ReceiveFragmentAdapter.kt │ │ │ │ │ │ │ └── holder │ │ │ │ │ │ │ │ ├── AccountGroupViewHolder.kt │ │ │ │ │ │ │ │ ├── AccountItemViewHolder.kt │ │ │ │ │ │ │ │ └── TotalViewHolder.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── FromMyceliumViewModel.kt │ │ │ │ │ │ │ ├── ReceiveCommonViewModel.kt │ │ │ │ │ │ │ └── ShowQRViewModel.kt │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── BequantKYCApiService.kt │ │ │ │ │ │ ├── NullOnEmptyConverterFactory.kt │ │ │ │ │ │ ├── RequestLauncherExt.kt │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── AuthInterceptors.kt │ │ │ │ │ │ │ ├── RetrofitFactory.kt │ │ │ │ │ │ │ ├── apis │ │ │ │ │ │ │ │ ├── AccountApi.kt │ │ │ │ │ │ │ │ ├── ApiKeyApi.kt │ │ │ │ │ │ │ │ ├── SessionApi.kt │ │ │ │ │ │ │ │ └── SwaggerApi.kt │ │ │ │ │ │ │ └── models │ │ │ │ │ │ │ │ ├── AccountAuthRequest.kt │ │ │ │ │ │ │ │ ├── AccountAuthResponse.kt │ │ │ │ │ │ │ │ ├── AccountEmailConfirmResend.kt │ │ │ │ │ │ │ │ ├── AccountPasswordResetRequest.kt │ │ │ │ │ │ │ │ ├── AccountPasswordSetRequest.kt │ │ │ │ │ │ │ │ ├── AccountPasswordUpdateRequest.kt │ │ │ │ │ │ │ │ ├── ApiKey.kt │ │ │ │ │ │ │ │ ├── ApiKeyDeleteRequest.kt │ │ │ │ │ │ │ │ ├── ApiKeyRequest.kt │ │ │ │ │ │ │ │ ├── Error.kt │ │ │ │ │ │ │ │ ├── KycCheckMobilePhoneRequest.kt │ │ │ │ │ │ │ │ ├── KycCreateRequest.kt │ │ │ │ │ │ │ │ ├── KycSaveMobilePhoneRequest.kt │ │ │ │ │ │ │ │ ├── KycStatusResponse.kt │ │ │ │ │ │ │ │ ├── KycUser.kt │ │ │ │ │ │ │ │ ├── KycUserDocFile.kt │ │ │ │ │ │ │ │ ├── KycUserDocsResponse.kt │ │ │ │ │ │ │ │ ├── OnceTokenResponse.kt │ │ │ │ │ │ │ │ ├── RegisterAccountRequest.kt │ │ │ │ │ │ │ │ ├── SessionJWT.kt │ │ │ │ │ │ │ │ ├── SessionResponse.kt │ │ │ │ │ │ │ │ ├── SessionTotpValidateRequest.kt │ │ │ │ │ │ │ │ ├── TotpActivateRequest.kt │ │ │ │ │ │ │ │ ├── TotpCreateRequest.kt │ │ │ │ │ │ │ │ ├── TotpCreateResponse.kt │ │ │ │ │ │ │ │ ├── TotpDeleteRequest.kt │ │ │ │ │ │ │ │ ├── TotpListResponse.kt │ │ │ │ │ │ │ │ └── TotpResponse.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── KYC.kt │ │ │ │ │ │ │ ├── ProgressRequestBody.kt │ │ │ │ │ │ │ ├── UserInfo.kt │ │ │ │ │ │ │ └── UserStatus.kt │ │ │ │ │ │ ├── repositories │ │ │ │ │ │ │ ├── AccountApiRepository.kt │ │ │ │ │ │ │ ├── Api.kt │ │ │ │ │ │ │ ├── KYCRepository.kt │ │ │ │ │ │ │ ├── PublicApiRepository.kt │ │ │ │ │ │ │ ├── SignRepository.kt │ │ │ │ │ │ │ └── TradingApiRepository.kt │ │ │ │ │ │ └── trading │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── AccountApi.kt │ │ │ │ │ │ │ ├── PublicApi.kt │ │ │ │ │ │ │ ├── SubAccountsApi.kt │ │ │ │ │ │ │ ├── TradingApi.kt │ │ │ │ │ │ │ └── TradingHistoryApi.kt │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Address.kt │ │ │ │ │ │ │ ├── AddressIsMineCheck.kt │ │ │ │ │ │ │ ├── Balance.kt │ │ │ │ │ │ │ ├── Candle.kt │ │ │ │ │ │ │ ├── Currency.kt │ │ │ │ │ │ │ ├── Error.kt │ │ │ │ │ │ │ ├── ErrorError.kt │ │ │ │ │ │ │ ├── InlineResponse200.kt │ │ │ │ │ │ │ ├── InlineResponse2001.kt │ │ │ │ │ │ │ ├── InlineResponse2002.kt │ │ │ │ │ │ │ ├── InlineResponse2003.kt │ │ │ │ │ │ │ ├── InlineResponse2004.kt │ │ │ │ │ │ │ ├── Order.kt │ │ │ │ │ │ │ ├── OrderTradesReport.kt │ │ │ │ │ │ │ ├── Orderbook.kt │ │ │ │ │ │ │ ├── OrderbookAsk.kt │ │ │ │ │ │ │ ├── PublicTrade.kt │ │ │ │ │ │ │ ├── SubAccount.kt │ │ │ │ │ │ │ ├── SubAccountAcl.kt │ │ │ │ │ │ │ ├── SubAccountBalance.kt │ │ │ │ │ │ │ ├── SubAccountBalanceMain.kt │ │ │ │ │ │ │ ├── Symbol.kt │ │ │ │ │ │ │ ├── Ticker.kt │ │ │ │ │ │ │ ├── Trade.kt │ │ │ │ │ │ │ ├── TradingFee.kt │ │ │ │ │ │ │ ├── Transaction.kt │ │ │ │ │ │ │ └── WithdrawConfirm.kt │ │ │ │ │ ├── sign │ │ │ │ │ │ ├── SignActivity.kt │ │ │ │ │ │ ├── SignFragment.kt │ │ │ │ │ │ └── SignFragmentAdapter.kt │ │ │ │ │ ├── signin │ │ │ │ │ │ ├── ResetPasswordChangeFragment.kt │ │ │ │ │ │ ├── ResetPasswordFragment.kt │ │ │ │ │ │ ├── ResetPasswordInfoFragment.kt │ │ │ │ │ │ ├── SignInFragment.kt │ │ │ │ │ │ ├── SignInTwoFactorFragment.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ └── SignInViewModel.kt │ │ │ │ │ ├── signup │ │ │ │ │ │ ├── BackupCodeFragment.kt │ │ │ │ │ │ ├── RegistrationInfoFragment.kt │ │ │ │ │ │ ├── RegistrationTotpFragment.kt │ │ │ │ │ │ ├── SetupCodeFragment.kt │ │ │ │ │ │ ├── SignUpFragment.kt │ │ │ │ │ │ ├── SignUpTwoFactorFragment.kt │ │ │ │ │ │ ├── SignUpTwoFactorPasscodeFragment.kt │ │ │ │ │ │ ├── TwoFactorActivity.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── RegistrationInfoViewModel.kt │ │ │ │ │ │ │ ├── SetupCodeViewModel.kt │ │ │ │ │ │ │ └── SignUpViewModel.kt │ │ │ │ │ └── withdraw │ │ │ │ │ │ ├── WithdrawAddressFragment.kt │ │ │ │ │ │ ├── WithdrawFragment.kt │ │ │ │ │ │ ├── WithdrawWalletFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ └── WithdrawFragmentAdapter.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── WithdrawAddressViewModel.kt │ │ │ │ │ │ └── WithdrawViewModel.kt │ │ │ │ │ ├── giftbox │ │ │ │ │ ├── ErrorHandler.kt │ │ │ │ │ ├── GiftBoxRootActivity.kt │ │ │ │ │ ├── GiftboxExt.kt │ │ │ │ │ ├── GiftboxPreference.kt │ │ │ │ │ ├── cards │ │ │ │ │ │ ├── CardsFragment.kt │ │ │ │ │ │ ├── GiftBoxFragment.kt │ │ │ │ │ │ ├── OrdersFragment.kt │ │ │ │ │ │ ├── SelectCountriesFragment.kt │ │ │ │ │ │ ├── StoresFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── CardAdapter.kt │ │ │ │ │ │ │ ├── CardsFragmentAdapter.kt │ │ │ │ │ │ │ ├── OrderAdapter.kt │ │ │ │ │ │ │ ├── SearchTagAdapter.kt │ │ │ │ │ │ │ ├── SelectCountriesAdapter.kt │ │ │ │ │ │ │ └── StoresAdapter.kt │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── OrdersUpdate.kt │ │ │ │ │ │ │ └── RefreshOrdersRequest.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── GiftBoxViewModel.kt │ │ │ │ │ │ │ ├── PurchasedViewModel.kt │ │ │ │ │ │ │ └── StoresViewModel.kt │ │ │ │ │ ├── client │ │ │ │ │ │ ├── GiftboxApi.kt │ │ │ │ │ │ ├── GiftboxApiRepository.kt │ │ │ │ │ │ ├── GiftboxConstants.kt │ │ │ │ │ │ ├── GiftboxRetrofitFactory.kt │ │ │ │ │ │ ├── GitboxAPI.kt │ │ │ │ │ │ ├── MCGiftboxApiRepository.kt │ │ │ │ │ │ ├── McGiftboxApi.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── MCCreateOrderRequest.kt │ │ │ │ │ │ │ ├── MCError.kt │ │ │ │ │ │ │ ├── MCOrderResponse.kt │ │ │ │ │ │ │ ├── MCOrderStatusRequest.kt │ │ │ │ │ │ │ ├── MCOrderStatusResponse.kt │ │ │ │ │ │ │ ├── MCPrice.kt │ │ │ │ │ │ │ ├── MCProductInfo.kt │ │ │ │ │ │ │ ├── MCProductResponse.kt │ │ │ │ │ │ │ ├── OrderList.kt │ │ │ │ │ │ │ └── Products.kt │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── CheckoutProductResponse.kt │ │ │ │ │ │ │ ├── CreateOrderRequest.kt │ │ │ │ │ │ │ ├── CurrencyInfo.kt │ │ │ │ │ │ │ ├── Ecode.kt │ │ │ │ │ │ │ ├── Order.kt │ │ │ │ │ │ │ ├── OrderResponse.kt │ │ │ │ │ │ │ ├── OrdersHistoryResponse.kt │ │ │ │ │ │ │ ├── PriceResponse.kt │ │ │ │ │ │ │ ├── ProductInfo.kt │ │ │ │ │ │ │ ├── ProductResponse.kt │ │ │ │ │ │ │ ├── ProductsResponse.kt │ │ │ │ │ │ │ └── Status.kt │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AmountViewModel.kt │ │ │ │ │ │ ├── DescriptionViewModel.kt │ │ │ │ │ │ ├── ListState.kt │ │ │ │ │ │ ├── ListStateViewModel.kt │ │ │ │ │ │ └── OrderHeaderViewModel.kt │ │ │ │ │ ├── details │ │ │ │ │ │ ├── DefaultCardDrawable.kt │ │ │ │ │ │ ├── GiftBoxDetailsFragment.kt │ │ │ │ │ │ ├── GiftBoxStoreDetailsFragment.kt │ │ │ │ │ │ ├── RedeemInstructionsFragment.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── GiftBoxDetailsViewModel.kt │ │ │ │ │ │ │ └── GiftBoxStoreDetailsViewModel.kt │ │ │ │ │ ├── model │ │ │ │ │ │ └── Card.kt │ │ │ │ │ └── purchase │ │ │ │ │ │ ├── AmountInputFragment.kt │ │ │ │ │ │ ├── GiftBoxBuyResultFragment.kt │ │ │ │ │ │ ├── GiftboxBuyFragment.kt │ │ │ │ │ │ ├── SelectAccountFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── AccountAdapter.kt │ │ │ │ │ │ ├── SingleChoiceListAdapter.kt │ │ │ │ │ │ └── holder │ │ │ │ │ │ │ ├── AccountGroupViewHolder.kt │ │ │ │ │ │ │ └── AccountItemViewHolder.kt │ │ │ │ │ │ ├── debounce.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── GiftboxBuyResultViewModel.kt │ │ │ │ │ │ └── GiftboxBuyViewModel.kt │ │ │ │ │ └── wallet │ │ │ │ │ ├── AddressBookManager.java │ │ │ │ │ ├── AddressTypeUtils.kt │ │ │ │ │ ├── AndroidLogHandler.java │ │ │ │ │ ├── AndroidRandomSource.java │ │ │ │ │ ├── BalanceInfo.java │ │ │ │ │ ├── ClearPinDialog.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── CurrencySwitcher.kt │ │ │ │ │ ├── DataExport.java │ │ │ │ │ ├── DbLogHandler.java │ │ │ │ │ ├── DelegatingSSLSocketFactory.java │ │ │ │ │ ├── EnterTextDialog.java │ │ │ │ │ ├── ExchangeRateManager.java │ │ │ │ │ ├── GpsLocationFetcher.java │ │ │ │ │ ├── HttpErrorCollector.java │ │ │ │ │ ├── LedgerPin2FADialog.java │ │ │ │ │ ├── LedgerPinDialog.kt │ │ │ │ │ ├── LoadingProgressTracker.kt │ │ │ │ │ ├── LogEntry.java │ │ │ │ │ ├── MbwEnvironment.java │ │ │ │ │ ├── MbwManager.java │ │ │ │ │ ├── MbwMessageReceiver.kt │ │ │ │ │ ├── MbwMigration.kt │ │ │ │ │ ├── MbwProdEnvironment.java │ │ │ │ │ ├── MbwRegTestEnvironment.java │ │ │ │ │ ├── MbwTestEnvironment.java │ │ │ │ │ ├── MbwTestnet4Environment.kt │ │ │ │ │ ├── MinerFee.java │ │ │ │ │ ├── NetworkChangedReceiver.kt │ │ │ │ │ ├── NewPinDialog.kt │ │ │ │ │ ├── NumberEntry.java │ │ │ │ │ ├── PackageRemovedReceiver.java │ │ │ │ │ ├── PinDialog.kt │ │ │ │ │ ├── Record.java │ │ │ │ │ ├── SimpleGestureFilter.java │ │ │ │ │ ├── TransactionOutputInfo.java │ │ │ │ │ ├── TrezorPinDialog.kt │ │ │ │ │ ├── UpdateConfigWorker.kt │ │ │ │ │ ├── UserFacingException.java │ │ │ │ │ ├── UserKeysManager.kt │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── VersionManager.java │ │ │ │ │ ├── WalletApplication.kt │ │ │ │ │ ├── WalletConfiguration.kt │ │ │ │ │ ├── activity │ │ │ │ │ ├── AboutActivity.kt │ │ │ │ │ ├── AccountCreatorHelper.java │ │ │ │ │ ├── ActionActivity.kt │ │ │ │ │ ├── AddAccountActivity.java │ │ │ │ │ ├── AddAdvancedAccountActivity.java │ │ │ │ │ ├── AdditionalBackupWarningActivity.java │ │ │ │ │ ├── BackupWordListActivity.java │ │ │ │ │ ├── BipSsImportActivity.kt │ │ │ │ │ ├── ConnectionLogsActivity.java │ │ │ │ │ ├── CreateKeyActivity.kt │ │ │ │ │ ├── CustomCaptureActivity.java │ │ │ │ │ ├── EnterWordListActivity.java │ │ │ │ │ ├── FormattedLog.java │ │ │ │ │ ├── GetAmountActivity.kt │ │ │ │ │ ├── HandleUrlActivity.java │ │ │ │ │ ├── HdAccountSelectorActivity.kt │ │ │ │ │ ├── InstantMasterseedActivity.kt │ │ │ │ │ ├── MasterseedPasswordDialog.kt │ │ │ │ │ ├── MessageSigningActivity.kt │ │ │ │ │ ├── MessageVerifyActivity.kt │ │ │ │ │ ├── PinProtectedActivity.java │ │ │ │ │ ├── RestartPopupActivity.java │ │ │ │ │ ├── ScanActivity.java │ │ │ │ │ ├── StartupActivity.kt │ │ │ │ │ ├── StartupActivityHelper.kt │ │ │ │ │ ├── StringHandlerActivity.java │ │ │ │ │ ├── TextNormalizer.java │ │ │ │ │ ├── UpdateNotificationActivity.java │ │ │ │ │ ├── UsKeyboardFragment.java │ │ │ │ │ ├── VerifyWordListActivity.java │ │ │ │ │ ├── WordAutoCompleterFragment.java │ │ │ │ │ ├── addaccount │ │ │ │ │ │ ├── AddERC20TokenDialog.kt │ │ │ │ │ │ ├── ERC20CreationAsyncTask.kt │ │ │ │ │ │ ├── ERC20EthAccountAdapter.kt │ │ │ │ │ │ ├── ERC20TokenAdapter.kt │ │ │ │ │ │ └── ETHCreationAsyncTask.kt │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── ChangeLog.kt │ │ │ │ │ │ ├── ChangeLogBottomSheetDialogFragment.kt │ │ │ │ │ │ ├── ChangeLogUiModel.kt │ │ │ │ │ │ ├── ChangeLogViewModel.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── ChangeLogListAdapter.kt │ │ │ │ │ │ │ └── ChangeLogViewHolder.kt │ │ │ │ │ │ └── datasource │ │ │ │ │ │ │ └── ChangeLogDataSource.kt │ │ │ │ │ ├── export │ │ │ │ │ │ ├── BackupToPdfActivity.java │ │ │ │ │ │ ├── DecryptBip38PrivateKeyActivity.java │ │ │ │ │ │ ├── ExportAsQrActivity.kt │ │ │ │ │ │ ├── ExportAsQrBtcHDViewModel.kt │ │ │ │ │ │ ├── ExportAsQrBtcSAViewModel.kt │ │ │ │ │ │ ├── ExportAsQrModel.kt │ │ │ │ │ │ ├── ExportAsQrMultiKeysViewModel.kt │ │ │ │ │ │ ├── ExportAsQrViewModel.kt │ │ │ │ │ │ ├── ExportFioKeyActivity.kt │ │ │ │ │ │ ├── MrdDecryptDataActivity.java │ │ │ │ │ │ ├── ShamirSharingActivity.kt │ │ │ │ │ │ ├── VerifyBackupActivity.java │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── SharesAdapter.kt │ │ │ │ │ │ │ └── TextPrintAdapter.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── ExportAsQrFactory.kt │ │ │ │ │ │ │ └── ExportFioAsQrViewModel.kt │ │ │ │ │ ├── fio │ │ │ │ │ │ ├── AboutFIOProtocolDialog.kt │ │ │ │ │ │ ├── ExpirationDetailsDialog.kt │ │ │ │ │ │ ├── mapaccount │ │ │ │ │ │ │ ├── AccountMappingActivity.kt │ │ │ │ │ │ │ ├── FIODomainDetailsFragment.kt │ │ │ │ │ │ │ ├── FIONameDetailsFragment.kt │ │ │ │ │ │ │ ├── FIONameListFragment.kt │ │ │ │ │ │ │ ├── Mode.kt │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ │ ├── AccountMappingAdapter.kt │ │ │ │ │ │ │ │ ├── AccountNamesAdapter.kt │ │ │ │ │ │ │ │ ├── DomainDetailsAdapter.kt │ │ │ │ │ │ │ │ ├── FIONameViewHolder.kt │ │ │ │ │ │ │ │ └── viewholder │ │ │ │ │ │ │ │ │ ├── AccountViewHolder.kt │ │ │ │ │ │ │ │ │ ├── FIODomainViewHolder.kt │ │ │ │ │ │ │ │ │ ├── GroupRowViewHolder.kt │ │ │ │ │ │ │ │ │ ├── GroupViewHolder.kt │ │ │ │ │ │ │ │ │ └── SubGroupViewHolder.kt │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ │ ├── AccountMappingViewModel.kt │ │ │ │ │ │ │ │ ├── FIODomainViewModel.kt │ │ │ │ │ │ │ │ └── FIOMapPubAddressViewModel.kt │ │ │ │ │ │ ├── registerdomain │ │ │ │ │ │ │ ├── RegisterFIODomainActivity.kt │ │ │ │ │ │ │ ├── RegisterFioDomainCompletedFragment.kt │ │ │ │ │ │ │ ├── RegisterFioDomainFragment.kt │ │ │ │ │ │ │ ├── RegisterFioDomainStep1Fragment.kt │ │ │ │ │ │ │ ├── RegisterFioDomainStep2Fragment.kt │ │ │ │ │ │ │ ├── RenewFioDomainFragment.kt │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ │ └── RegisterFioDomainViewModel.kt │ │ │ │ │ │ ├── registername │ │ │ │ │ │ │ ├── RegisterFioNameActivity.kt │ │ │ │ │ │ │ ├── RegisterFioNameCompletedFragment.kt │ │ │ │ │ │ │ ├── RegisterFioNameFragment.kt │ │ │ │ │ │ │ ├── RegisterFioNameStep1Fragment.kt │ │ │ │ │ │ │ ├── RegisterFioNameStep2Fragment.kt │ │ │ │ │ │ │ ├── RenewFioNameFragment.kt │ │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ │ └── RegisterFioNameViewModel.kt │ │ │ │ │ │ └── requests │ │ │ │ │ │ │ ├── ApproveFioRequestActivity.kt │ │ │ │ │ │ │ ├── ApproveFioRequestSuccessActivity.kt │ │ │ │ │ │ │ ├── FioRequestCreateActivity.kt │ │ │ │ │ │ │ ├── SentFioRequestStatusActivity.kt │ │ │ │ │ │ │ └── viewmodels │ │ │ │ │ │ │ ├── FioRequestCreateViewModel.kt │ │ │ │ │ │ │ └── FioSendRequestViewModel.kt │ │ │ │ │ ├── getamount │ │ │ │ │ │ ├── AmountValidation.kt │ │ │ │ │ │ └── GetAmountViewModel.kt │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AccountsTopBannerView.kt │ │ │ │ │ │ ├── BalanceFragment.kt │ │ │ │ │ │ ├── BalanceMasterFragment.kt │ │ │ │ │ │ ├── BuySellFragment.kt │ │ │ │ │ │ ├── FioProtocolBannerFragment.kt │ │ │ │ │ │ ├── FioRequestsHistoryFragment.kt │ │ │ │ │ │ ├── NoticeFragment.kt │ │ │ │ │ │ ├── RecommendationsFragment.kt │ │ │ │ │ │ ├── TransactionHistoryFragment.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── ButtonAdapter.kt │ │ │ │ │ │ │ ├── ButtonClickListener.java │ │ │ │ │ │ │ ├── FioRequestAdapter.kt │ │ │ │ │ │ │ ├── QuadAdsAdapter.kt │ │ │ │ │ │ │ ├── RecommendationAdapter.java │ │ │ │ │ │ │ └── TransactionArrayAdapter.java │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ ├── AddressFragment.kt │ │ │ │ │ │ │ ├── AddressFragmentBtcModel.kt │ │ │ │ │ │ │ ├── AddressFragmentCoinsModel.kt │ │ │ │ │ │ │ ├── AddressFragmentModel.kt │ │ │ │ │ │ │ └── AddressFragmentViewModel.kt │ │ │ │ │ │ ├── loader │ │ │ │ │ │ │ └── Preloader.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── ActionButton.kt │ │ │ │ │ │ │ ├── PartnerInfo.java │ │ │ │ │ │ │ ├── RecommendationBanner.java │ │ │ │ │ │ │ ├── RecommendationFooter.java │ │ │ │ │ │ │ ├── RecommendationHeader.kt │ │ │ │ │ │ │ ├── RecommendationInfo.java │ │ │ │ │ │ │ ├── fiorequestshistory │ │ │ │ │ │ │ ├── FioRequestsHistoryViewModel.kt │ │ │ │ │ │ │ └── FioRequestsLiveData.kt │ │ │ │ │ │ │ └── transactionhistory │ │ │ │ │ │ │ ├── TransactionHistoryLiveData.kt │ │ │ │ │ │ │ └── TransactionHistoryModel.kt │ │ │ │ │ ├── modern │ │ │ │ │ │ ├── AccountsFragment.kt │ │ │ │ │ │ ├── AddressBookFragment.kt │ │ │ │ │ │ ├── AdsFragment.kt │ │ │ │ │ │ ├── GetFromAddressBookActivity.kt │ │ │ │ │ │ ├── HDSigningActivity.java │ │ │ │ │ │ ├── ModernMain.kt │ │ │ │ │ │ ├── NewsFragment.kt │ │ │ │ │ │ ├── RecordRowBuilder.kt │ │ │ │ │ │ ├── Toaster.kt │ │ │ │ │ │ ├── UnspentOutputsActivity.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── AccountListAdapter.kt │ │ │ │ │ │ │ ├── AddressBookAdapter.java │ │ │ │ │ │ │ ├── NewsAdapter.kt │ │ │ │ │ │ │ ├── SelectAssetDialog.kt │ │ │ │ │ │ │ ├── TabsAdapter.kt │ │ │ │ │ │ │ ├── UnspentOutputAdapter.kt │ │ │ │ │ │ │ └── holder │ │ │ │ │ │ │ │ ├── AccountViewHolder.kt │ │ │ │ │ │ │ │ ├── ArchivedGroupTitleViewHolder.kt │ │ │ │ │ │ │ │ ├── GroupTitleViewHolder.kt │ │ │ │ │ │ │ │ ├── InvestmentViewHolder.kt │ │ │ │ │ │ │ │ ├── NewsHolders.kt │ │ │ │ │ │ │ │ ├── NewsV2BigHolder.kt │ │ │ │ │ │ │ │ ├── NewsV2Holder.kt │ │ │ │ │ │ │ │ ├── NewsV2ListHolder.kt │ │ │ │ │ │ │ │ ├── SpaceViewHolder.java │ │ │ │ │ │ │ │ └── TotalViewHolder.java │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── BackHandler.kt │ │ │ │ │ │ │ ├── BackListener.kt │ │ │ │ │ │ │ ├── RemoveTab.kt │ │ │ │ │ │ │ └── SelectTab.kt │ │ │ │ │ │ ├── helper │ │ │ │ │ │ │ ├── AccountsActionModeCallback.kt │ │ │ │ │ │ │ ├── AddDialog.kt │ │ │ │ │ │ │ ├── FioHelper.kt │ │ │ │ │ │ │ └── MainActions.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── ViewAccountModel.java │ │ │ │ │ │ │ └── accounts │ │ │ │ │ │ │ │ ├── AccountInvestmentViewModel.kt │ │ │ │ │ │ │ │ ├── AccountListItem.kt │ │ │ │ │ │ │ │ ├── AccountViewModel.kt │ │ │ │ │ │ │ │ ├── AccountsGroupModel.kt │ │ │ │ │ │ │ │ ├── AccountsListModel.kt │ │ │ │ │ │ │ │ ├── AccountsViewLiveData.kt │ │ │ │ │ │ │ │ ├── SyncStatusItem.kt │ │ │ │ │ │ │ │ └── TotalViewModel.kt │ │ │ │ │ │ └── vip │ │ │ │ │ │ │ ├── VipFragment.kt │ │ │ │ │ │ │ └── VipViewModel.kt │ │ │ │ │ ├── news │ │ │ │ │ │ ├── NewsActivity.kt │ │ │ │ │ │ ├── NewsImageActivity.kt │ │ │ │ │ │ ├── NewsUtils.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── NewsSearchAdapter.kt │ │ │ │ │ │ │ ├── PaginationScrollListener.kt │ │ │ │ │ │ │ └── holder │ │ │ │ │ │ │ │ ├── NewsSearchHeaderHolder.kt │ │ │ │ │ │ │ │ ├── NewsSearchItemAllHolder.kt │ │ │ │ │ │ │ │ └── NewsV2DoubleHolder.kt │ │ │ │ │ │ └── event │ │ │ │ │ │ │ └── NewsFavoriteEvent.kt │ │ │ │ │ ├── pop │ │ │ │ │ │ ├── PopActivity.java │ │ │ │ │ │ ├── PopSelectTransactionActivity.java │ │ │ │ │ │ └── PopUtils.java │ │ │ │ │ ├── receive │ │ │ │ │ │ ├── ReceiveBchViewModel.kt │ │ │ │ │ │ ├── ReceiveBtcViewModel.kt │ │ │ │ │ │ ├── ReceiveCoinsActivity.kt │ │ │ │ │ │ ├── ReceiveCoinsModel.kt │ │ │ │ │ │ ├── ReceiveCoinsViewModel.kt │ │ │ │ │ │ ├── ReceiveERC20ViewModel.kt │ │ │ │ │ │ ├── ReceiveEthViewModel.kt │ │ │ │ │ │ ├── ReceiveFIOViewModel.kt │ │ │ │ │ │ ├── ReceiveGenericCoinsViewModel.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ └── ReceiveCoinsFactory.kt │ │ │ │ │ ├── rmc │ │ │ │ │ │ ├── Keys.java │ │ │ │ │ │ ├── RMCAddressFragment.kt │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── RmcRate.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ └── BitcoinNetworkStats.java │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── ProfitMeterView.java │ │ │ │ │ ├── send │ │ │ │ │ │ ├── BroadcastDialog.kt │ │ │ │ │ │ ├── ColdStorageSummaryActivity.java │ │ │ │ │ │ ├── GetSpendingRecordActivity.java │ │ │ │ │ │ ├── InstantWalletActivity.java │ │ │ │ │ │ ├── InstantWalletActivity.kt │ │ │ │ │ │ ├── ManualAddressEntry.kt │ │ │ │ │ │ ├── SendCoinsActivity.kt │ │ │ │ │ │ ├── SendInitializationActivity.kt │ │ │ │ │ │ ├── SignTransactionActivity.kt │ │ │ │ │ │ ├── VerifyPaymentRequestActivity.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── AddressViewAdapter.kt │ │ │ │ │ │ │ ├── BatchAdapter.kt │ │ │ │ │ │ │ ├── FIONameAdapter.kt │ │ │ │ │ │ │ ├── FeeLvlViewAdapter.java │ │ │ │ │ │ │ └── FeeViewAdapter.java │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── AmountListener.kt │ │ │ │ │ │ │ ├── BroadcastResultListener.kt │ │ │ │ │ │ │ └── SelectListener.java │ │ │ │ │ │ ├── helper │ │ │ │ │ │ │ ├── CubicAlgorithm.java │ │ │ │ │ │ │ ├── ExponentialFeeItemsAlgorithm.java │ │ │ │ │ │ │ ├── ExponentialLowPrioAlgorithm.java │ │ │ │ │ │ │ ├── FeeItemsAlgorithm.java │ │ │ │ │ │ │ ├── FeeItemsBuilder.java │ │ │ │ │ │ │ ├── LinearAlgorithm.java │ │ │ │ │ │ │ └── RoundNumberAffineExponentialFeeItemsAlgorithm.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── AddressItem.kt │ │ │ │ │ │ │ ├── FeeItem.java │ │ │ │ │ │ │ ├── FeeLvlItem.java │ │ │ │ │ │ │ ├── SendBtcModel.kt │ │ │ │ │ │ │ ├── SendBtcViewModel.kt │ │ │ │ │ │ │ ├── SendCoinsFactory.kt │ │ │ │ │ │ │ ├── SendCoinsModel.kt │ │ │ │ │ │ │ ├── SendCoinsViewModel.kt │ │ │ │ │ │ │ ├── SendColuViewModel.kt │ │ │ │ │ │ │ ├── SendErc20Model.kt │ │ │ │ │ │ │ ├── SendEthModel.kt │ │ │ │ │ │ │ ├── SendEthViewModel.kt │ │ │ │ │ │ │ ├── SendFioModel.kt │ │ │ │ │ │ │ └── SendFioViewModel.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── CustomEditText.kt │ │ │ │ │ │ │ ├── Selectable.java │ │ │ │ │ │ │ └── SelectableRecyclerView.java │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── BackupFragment.java │ │ │ │ │ │ ├── BlockExplorersFragment.kt │ │ │ │ │ │ ├── DenominationFragment.kt │ │ │ │ │ │ ├── ExchangeSourcesFragment.kt │ │ │ │ │ │ ├── ExternalServiceFragment.kt │ │ │ │ │ │ ├── HelpFragment.kt │ │ │ │ │ │ ├── MinerFeeFragment.kt │ │ │ │ │ │ ├── ModulePreference.java │ │ │ │ │ │ ├── NotificationsFragment.kt │ │ │ │ │ │ ├── PinCodeFragment.java │ │ │ │ │ │ ├── SetLocalCurrencyActivity.java │ │ │ │ │ │ ├── SetSegwitChangeActivity.kt │ │ │ │ │ │ ├── SettingsActivity.kt │ │ │ │ │ │ ├── SettingsFragment.java │ │ │ │ │ │ ├── SettingsPreference.kt │ │ │ │ │ │ ├── VersionFragment.java │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── DialogListAdapter.java │ │ │ │ │ │ │ └── LocalCurrencyAdapter.java │ │ │ │ │ │ └── helper │ │ │ │ │ │ │ ├── DisplayPreferenceDialogHandler.java │ │ │ │ │ │ │ ├── TwoFactorHelper.kt │ │ │ │ │ │ │ └── UseTorHelper.kt │ │ │ │ │ ├── txdetails │ │ │ │ │ │ ├── BtcDetailsFragment.kt │ │ │ │ │ │ ├── BtcvDetailsFragment.kt │ │ │ │ │ │ ├── DetailsFragment.kt │ │ │ │ │ │ ├── EthDetailsFragment.kt │ │ │ │ │ │ ├── FioDetailsFragment.kt │ │ │ │ │ │ └── TransactionDetailsActivity.java │ │ │ │ │ ├── update │ │ │ │ │ │ └── UpdateNotificationBottomSheetDialogFragment.kt │ │ │ │ │ ├── util │ │ │ │ │ │ ├── AbstractAccountScanManager.kt │ │ │ │ │ │ ├── AccountDisplayType.java │ │ │ │ │ │ ├── ActivityExtensions.kt │ │ │ │ │ │ ├── AdaptiveDateFormat.java │ │ │ │ │ │ ├── AddressLabel.java │ │ │ │ │ │ ├── AnimationUtils.kt │ │ │ │ │ │ ├── BlockExplorer.java │ │ │ │ │ │ ├── BlockExplorerLabel.kt │ │ │ │ │ │ ├── BlockExplorerManager.java │ │ │ │ │ │ ├── DelayAutoCompleteTextView.java │ │ │ │ │ │ ├── EnterAddressLabelUtil.java │ │ │ │ │ │ ├── ExchangeValue.kt │ │ │ │ │ │ ├── FeeFormattingUtil.kt │ │ │ │ │ │ ├── FingerprintHandler.kt │ │ │ │ │ │ ├── GlobalBlockExplorerManager.kt │ │ │ │ │ │ ├── ImportCoCoHDAccount.java │ │ │ │ │ │ ├── IntentExtentions.kt │ │ │ │ │ │ ├── LiveDataUtils.kt │ │ │ │ │ │ ├── MasterseedPasswordSetter.kt │ │ │ │ │ │ ├── MasterseedScanManager.kt │ │ │ │ │ │ ├── Pin.java │ │ │ │ │ │ ├── QrImageView.java │ │ │ │ │ │ ├── ToggleableCurrencyButton.java │ │ │ │ │ │ ├── ToggleableCurrencyDisplay.kt │ │ │ │ │ │ ├── TotalToggleableCurrencyButton.java │ │ │ │ │ │ ├── TransactionConfirmationsDisplay.java │ │ │ │ │ │ ├── TransactionDetailsLabel.java │ │ │ │ │ │ ├── ValueExtensions.kt │ │ │ │ │ │ ├── WalletManagerExtensions.kt │ │ │ │ │ │ └── accountstrategy │ │ │ │ │ │ │ ├── AccountDisplayStrategy.java │ │ │ │ │ │ │ ├── BCHAccountDisplayStrategy.java │ │ │ │ │ │ │ ├── BTCAccountDisplayStrategy.java │ │ │ │ │ │ │ └── CoCoAccountDisplayStrategy.java │ │ │ │ │ └── view │ │ │ │ │ │ ├── ButtonPreference.kt │ │ │ │ │ │ ├── ClickableWebView.kt │ │ │ │ │ │ ├── ContextExtension.kt │ │ │ │ │ │ ├── DividerItemDecoration.java │ │ │ │ │ │ ├── EllipsizingTextView.java │ │ │ │ │ │ ├── LoaderFragment.kt │ │ │ │ │ │ ├── RoundButton.kt │ │ │ │ │ │ ├── RoundButtonWithText.kt │ │ │ │ │ │ ├── TwoButtonsPreference.kt │ │ │ │ │ │ ├── ValueKeyboard.kt │ │ │ │ │ │ ├── VerticalSpaceItemDecoration.kt │ │ │ │ │ │ └── ViewPagerIndicator.java │ │ │ │ │ ├── api │ │ │ │ │ ├── AbstractCallbackHandler.java │ │ │ │ │ ├── AndroidAsyncApi.java │ │ │ │ │ ├── AsyncTask.java │ │ │ │ │ ├── AsynchronousApi.java │ │ │ │ │ └── CallbackRunnerInvoker.java │ │ │ │ │ ├── bitid │ │ │ │ │ ├── BitIDAuthenticationActivity.java │ │ │ │ │ ├── BitIDSignRequest.java │ │ │ │ │ ├── BitIdAsyncTask.java │ │ │ │ │ ├── BitIdAuthenticator.java │ │ │ │ │ ├── BitIdResponse.java │ │ │ │ │ ├── ExternalService.java │ │ │ │ │ └── json │ │ │ │ │ │ └── BitIdError.java │ │ │ │ │ ├── colu │ │ │ │ │ └── SqliteColuManagerBacking.java │ │ │ │ │ ├── content │ │ │ │ │ ├── Action.kt │ │ │ │ │ ├── HandleConfigFactory.kt │ │ │ │ │ ├── ResultType.kt │ │ │ │ │ ├── StringHandleConfig.java │ │ │ │ │ └── actions │ │ │ │ │ │ ├── AddressAction.kt │ │ │ │ │ │ ├── AddressStringAction.kt │ │ │ │ │ │ ├── BitIdAction.kt │ │ │ │ │ │ ├── HdNodeAction.kt │ │ │ │ │ │ ├── MasterSeedAction.kt │ │ │ │ │ │ ├── PopAction.kt │ │ │ │ │ │ ├── PrivateKeyAction.kt │ │ │ │ │ │ ├── SssShareAction.kt │ │ │ │ │ │ ├── UriAction.kt │ │ │ │ │ │ ├── WebsiteAction.kt │ │ │ │ │ │ └── WordListAction.kt │ │ │ │ │ ├── event │ │ │ │ │ ├── AccountChanged.java │ │ │ │ │ ├── AccountCreated.java │ │ │ │ │ ├── AccountListChanged.kt │ │ │ │ │ ├── AccountSyncStopped.kt │ │ │ │ │ ├── AddressBookChanged.java │ │ │ │ │ ├── AssetSelected.java │ │ │ │ │ ├── BalanceChanged.java │ │ │ │ │ ├── EventTranslator.java │ │ │ │ │ ├── ExchangeRatesRefreshed.java │ │ │ │ │ ├── ExchangeSourceChanged.java │ │ │ │ │ ├── ExtraAccountsChanged.java │ │ │ │ │ ├── FeatureWarningsAvailable.java │ │ │ │ │ ├── MalformedOutgoingTransactionsFound.kt │ │ │ │ │ ├── MigrationPercentChanged.kt │ │ │ │ │ ├── MigrationStatusChanged.kt │ │ │ │ │ ├── NetworkConnectionStateChanged.kt │ │ │ │ │ ├── NewWalletVersionAvailable.java │ │ │ │ │ ├── PageSelectedEvent.java │ │ │ │ │ ├── ReceivingAddressChanged.java │ │ │ │ │ ├── RefreshingExchangeRatesFailed.java │ │ │ │ │ ├── SeedFromWordsCreated.java │ │ │ │ │ ├── SelectedAccountChanged.java │ │ │ │ │ ├── SelectedCurrencyChanged.java │ │ │ │ │ ├── SpvSendFundsResult.java │ │ │ │ │ ├── SyncFailed.java │ │ │ │ │ ├── SyncProgressUpdated.java │ │ │ │ │ ├── SyncStarted.java │ │ │ │ │ ├── SyncStopped.java │ │ │ │ │ ├── TooManyTransactions.kt │ │ │ │ │ ├── TorStateChanged.java │ │ │ │ │ ├── TransactionBroadcasted.kt │ │ │ │ │ ├── TransactionLabelChanged.kt │ │ │ │ │ ├── WalletLoadingProgressChanged.kt │ │ │ │ │ ├── WalletVersionEvent.java │ │ │ │ │ └── WalletVersionExEvent.java │ │ │ │ │ ├── exchange │ │ │ │ │ ├── ExchangeRateProvider.java │ │ │ │ │ ├── GetExchangeRate.java │ │ │ │ │ ├── RatesBacking.kt │ │ │ │ │ ├── ValueSum.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── CoinmarketcapRate.java │ │ │ │ │ │ └── Rate.java │ │ │ │ │ ├── ext.kt │ │ │ │ │ ├── external │ │ │ │ │ ├── Ads.kt │ │ │ │ │ ├── BankCardServiceDescription.kt │ │ │ │ │ ├── BuySellBankCardActivity.kt │ │ │ │ │ ├── BuySellSelectActivity.kt │ │ │ │ │ ├── BuySellSelectCountryActivity.kt │ │ │ │ │ ├── BuySellServiceDescriptor.java │ │ │ │ │ ├── DefaultJsonRpcRequest.kt │ │ │ │ │ ├── DigitalSignatureInterceptor.kt │ │ │ │ │ ├── LocalTraderServiceDescription.java │ │ │ │ │ ├── SepaServiceDescription.kt │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── BuySellSelectAdapter.kt │ │ │ │ │ │ ├── BuySellSelectCountryAdapter.kt │ │ │ │ │ │ └── TxHistoryAdapter.kt │ │ │ │ │ ├── changelly │ │ │ │ │ │ ├── AccountAdapter.java │ │ │ │ │ │ ├── ChangellyAPIService.kt │ │ │ │ │ │ ├── ChangellyConstants.java │ │ │ │ │ │ ├── ChangellyHeaderInterceptor.kt │ │ │ │ │ │ ├── ChangellyInterceptor.kt │ │ │ │ │ │ ├── ChangellyRetrofitFactory.kt │ │ │ │ │ │ ├── CurrencyAdapter.java │ │ │ │ │ │ ├── ExchangeKeys.kt │ │ │ │ │ │ ├── ExchangeLoggingService.java │ │ │ │ │ │ ├── bch │ │ │ │ │ │ │ ├── BCHBechAddress.java │ │ │ │ │ │ │ └── Utils.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── ChangellyCurrency.kt │ │ │ │ │ │ │ ├── ChangellyGetExchangeAmountResponse.kt │ │ │ │ │ │ │ ├── ChangellyResponse.kt │ │ │ │ │ │ │ ├── ChangellyTransaction.kt │ │ │ │ │ │ │ ├── ChangellyTransactionOffer.kt │ │ │ │ │ │ │ ├── FixRate.kt │ │ │ │ │ │ │ └── Order.java │ │ │ │ │ ├── changelly2 │ │ │ │ │ │ ├── ExchangeFragment.kt │ │ │ │ │ │ ├── ExchangeResultFragment.kt │ │ │ │ │ │ ├── HistoryFragment.kt │ │ │ │ │ │ ├── SelectAccountFragment.kt │ │ │ │ │ │ ├── Utils.kt │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ └── SelectAccountAdapter.kt │ │ │ │ │ │ ├── remote │ │ │ │ │ │ │ ├── Api.kt │ │ │ │ │ │ │ ├── Changelly2Repository.kt │ │ │ │ │ │ │ └── StatusRepository.kt │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ │ ├── ExchangeResultViewModel.kt │ │ │ │ │ │ │ └── ExchangeViewModel.kt │ │ │ │ │ ├── mediaflow │ │ │ │ │ │ ├── GetCategoriesTask.kt │ │ │ │ │ │ ├── GetNewsTask.kt │ │ │ │ │ │ ├── MediaFlowSyncWorker.kt │ │ │ │ │ │ ├── NewsApiService.java │ │ │ │ │ │ ├── NewsConstants.java │ │ │ │ │ │ ├── NewsFactory.kt │ │ │ │ │ │ ├── NewsSyncUtils.kt │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── NewsDatabase.kt │ │ │ │ │ │ │ └── NewsSQLiteHelper.java │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Author.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── Content.java │ │ │ │ │ │ │ ├── Media.java │ │ │ │ │ │ │ ├── MetaInfo.java │ │ │ │ │ │ │ ├── News.java │ │ │ │ │ │ │ └── Tag.java │ │ │ │ │ ├── partner │ │ │ │ │ │ ├── PartnerExt.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── AccountsContent.kt │ │ │ │ │ │ │ ├── BalanceContent.kt │ │ │ │ │ │ │ ├── BuySellContent.kt │ │ │ │ │ │ │ ├── CommonContent.kt │ │ │ │ │ │ │ ├── MainMenuContent.kt │ │ │ │ │ │ │ ├── MediaFlowContent.kt │ │ │ │ │ │ │ ├── Partner.kt │ │ │ │ │ │ │ └── PartnersLocalized.kt │ │ │ │ │ └── vip │ │ │ │ │ │ ├── VipAPI.kt │ │ │ │ │ │ ├── VipRetrofitFactory.kt │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── ActivateVipRequest.kt │ │ │ │ │ │ ├── ActivateVipResponse.kt │ │ │ │ │ │ └── CheckVipResponse.kt │ │ │ │ │ ├── extsig │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ExternalSignatureDeviceManager.kt │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ ├── ExtSigAccountImportActivity.kt │ │ │ │ │ │ │ ├── ExtSigAccountSelectorActivity.kt │ │ │ │ │ │ │ ├── ExtSigSignTransactionActivity.kt │ │ │ │ │ │ │ └── InstantExtSigActivity.kt │ │ │ │ │ ├── keepkey │ │ │ │ │ │ ├── KeepKeyManager.java │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ ├── InstantKeepKeyActivity.kt │ │ │ │ │ │ │ ├── KeepKeyAccountImportActivity.kt │ │ │ │ │ │ │ └── KeepKeySignTransactionActivity.kt │ │ │ │ │ ├── ledger │ │ │ │ │ │ ├── LedgerManager.kt │ │ │ │ │ │ ├── MyceliumKeyRecovery.java │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ ├── LedgerAccountImportActivity.kt │ │ │ │ │ │ │ ├── LedgerAccountSelectorActivity.kt │ │ │ │ │ │ │ └── LedgerSignTransactionActivity.java │ │ │ │ │ └── trezor │ │ │ │ │ │ ├── TrezorManager.kt │ │ │ │ │ │ └── activity │ │ │ │ │ │ ├── InstantTrezorActivity.kt │ │ │ │ │ │ ├── TrezorAccountImportActivity.kt │ │ │ │ │ │ └── TrezorSignTransactionActivity.kt │ │ │ │ │ ├── fio │ │ │ │ │ ├── AbiFioSerializationProviderWrapper.kt │ │ │ │ │ ├── FioRequestNotificator.kt │ │ │ │ │ ├── FioRequestService.kt │ │ │ │ │ └── event │ │ │ │ │ │ └── FioRequestStatusChanged.kt │ │ │ │ │ ├── lt │ │ │ │ │ ├── AddressDescription.java │ │ │ │ │ ├── BackendGeocoder.java │ │ │ │ │ ├── LocalTraderEventSubscriber.java │ │ │ │ │ ├── LocalTraderManager.java │ │ │ │ │ ├── LtAndroidConstants.java │ │ │ │ │ ├── LtAndroidUtils.java │ │ │ │ │ ├── TradeSessionChangeMonitor.java │ │ │ │ │ ├── TraderChangeMonitor.java │ │ │ │ │ ├── activity │ │ │ │ │ │ ├── ActiveTradesFragment.java │ │ │ │ │ │ ├── ChangeLocationActivity.java │ │ │ │ │ │ ├── ChangePriceActivity.java │ │ │ │ │ │ ├── CreateTrader1Activity.java │ │ │ │ │ │ ├── CreateTrader2Activity.java │ │ │ │ │ │ ├── CreateTrader3Activity.java │ │ │ │ │ │ ├── EnterFiatAmountActivity.java │ │ │ │ │ │ ├── EnterLocationActivity.java │ │ │ │ │ │ ├── LtMainActivity.java │ │ │ │ │ │ ├── MyInfoFragment.java │ │ │ │ │ │ ├── RefreshPriceActivity.java │ │ │ │ │ │ ├── SendRequestActivity.java │ │ │ │ │ │ ├── SolveCaptchaActivity.java │ │ │ │ │ │ ├── TabsAdapter.java │ │ │ │ │ │ ├── TradeActivity.java │ │ │ │ │ │ ├── TradeActivityUtil.java │ │ │ │ │ │ ├── TradeHistoryFragment.java │ │ │ │ │ │ ├── TraderInfoAdapter.java │ │ │ │ │ │ ├── TraderInfoFragment.java │ │ │ │ │ │ ├── ViewTraderInfoActivity.kt │ │ │ │ │ │ ├── buy │ │ │ │ │ │ │ ├── AdSearchFragment.java │ │ │ │ │ │ │ ├── CreateTradeActivity.java │ │ │ │ │ │ │ └── SetTradeAddress.java │ │ │ │ │ │ └── sell │ │ │ │ │ │ │ ├── AdsFragment.java │ │ │ │ │ │ │ └── CreateOrEditAdActivity.java │ │ │ │ │ ├── api │ │ │ │ │ │ ├── AbortTrade.java │ │ │ │ │ │ ├── AcceptTrade.java │ │ │ │ │ │ ├── ActivateAd.java │ │ │ │ │ │ ├── AdSearch.java │ │ │ │ │ │ ├── AssessBtcSellPrice.java │ │ │ │ │ │ ├── ChangeTradeSessionPrice.java │ │ │ │ │ │ ├── CreateAd.java │ │ │ │ │ │ ├── CreateTrade.java │ │ │ │ │ │ ├── CreateTrader.java │ │ │ │ │ │ ├── DeactivateAd.java │ │ │ │ │ │ ├── DeleteAd.java │ │ │ │ │ │ ├── DeleteTradeHistory.java │ │ │ │ │ │ ├── DeleteTrader.java │ │ │ │ │ │ ├── EditAd.java │ │ │ │ │ │ ├── GetAd.java │ │ │ │ │ │ ├── GetAds.java │ │ │ │ │ │ ├── GetCaptcha.java │ │ │ │ │ │ ├── GetFinalTradeSessions.java │ │ │ │ │ │ ├── GetOpenTradeSessions.java │ │ │ │ │ │ ├── GetPriceFormulas.java │ │ │ │ │ │ ├── GetPublicTraderInfo.java │ │ │ │ │ │ ├── GetTradeSession.java │ │ │ │ │ │ ├── GetTraderInfo.java │ │ │ │ │ │ ├── ReleaseBtc.java │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ ├── RequestMarketRateRefresh.java │ │ │ │ │ │ ├── SendEncryptedChatMessage.java │ │ │ │ │ │ ├── SetNotificationMail.java │ │ │ │ │ │ ├── SetTradeReceivingAddress.java │ │ │ │ │ │ ├── SolveCaptcha.java │ │ │ │ │ │ └── TryLogin.java │ │ │ │ │ └── notification │ │ │ │ │ │ ├── FcmBroadcastReceiver.java │ │ │ │ │ │ └── FcmListenerService.kt │ │ │ │ │ ├── modularisation │ │ │ │ │ ├── GooglePlayModuleCollection.kt │ │ │ │ │ └── ModularisationVersionHelper.java │ │ │ │ │ ├── paymentrequest │ │ │ │ │ └── PaymentRequestHandler.java │ │ │ │ │ ├── pdf │ │ │ │ │ ├── BCHExchangeReceiptBuilder.kt │ │ │ │ │ ├── ExportDistiller.java │ │ │ │ │ ├── ExportPdfParameters.java │ │ │ │ │ ├── InvoiceBuilder.java │ │ │ │ │ ├── PdfWriter.java │ │ │ │ │ └── ShamirBuilder.kt │ │ │ │ │ ├── persistence │ │ │ │ │ ├── GenericMetadataStorage.java │ │ │ │ │ ├── MetadataStorage.kt │ │ │ │ │ ├── PersistedOutput.java │ │ │ │ │ ├── SQLiteQueryWithBlobs.java │ │ │ │ │ └── TradeSessionDb.java │ │ │ │ │ ├── simplex │ │ │ │ │ ├── AuthEvent.java │ │ │ │ │ ├── SimplexError.java │ │ │ │ │ ├── SimplexLicenseCheckerCallback.java │ │ │ │ │ ├── SimplexMainActivity.java │ │ │ │ │ ├── SimplexNonceResponse.java │ │ │ │ │ └── SimplexServer.java │ │ │ │ │ └── wapi │ │ │ │ │ └── SqliteBtcWalletManagerBacking.java │ │ │ └── crl │ │ │ │ └── android │ │ │ │ └── pdfwriter │ │ │ │ ├── ASCII85Encoder.java │ │ │ │ ├── Array.java │ │ │ │ ├── Base.java │ │ │ │ ├── Body.java │ │ │ │ ├── CrossReferenceTable.java │ │ │ │ ├── Dictionary.java │ │ │ │ ├── EnclosedContent.java │ │ │ │ ├── Header.java │ │ │ │ ├── Indentifiers.java │ │ │ │ ├── IndirectIdentifier.java │ │ │ │ ├── IndirectObject.java │ │ │ │ ├── List.java │ │ │ │ ├── PDFDocument.java │ │ │ │ ├── PDFWriter.java │ │ │ │ ├── Page.java │ │ │ │ ├── Pages.java │ │ │ │ ├── PaperSize.java │ │ │ │ ├── StandardFonts.java │ │ │ │ ├── Stream.java │ │ │ │ ├── Trailer.java │ │ │ │ ├── Transformation.java │ │ │ │ └── XObjectImage.java │ │ ├── res │ │ │ ├── anim │ │ │ │ ├── anim_news_pulse.xml │ │ │ │ ├── news_pulse.xml │ │ │ │ ├── slide_left_in.xml │ │ │ │ ├── slide_left_out.xml │ │ │ │ ├── slide_right_in.xml │ │ │ │ ├── slide_right_out.xml │ │ │ │ └── slow_pulse.xml │ │ │ ├── color │ │ │ │ ├── bequant_radio_button.xml │ │ │ │ ├── bg_bequant_text_input_layout.xml │ │ │ │ ├── btn_text_color_selector.xml │ │ │ │ ├── button_blue_text_color.xml │ │ │ │ ├── button_text_color.xml │ │ │ │ ├── color_item_dialog_simple.xml │ │ │ │ ├── exchange_link_text_color.xml │ │ │ │ ├── giftbox_tag.xml │ │ │ │ ├── news_tab_text_color.xml │ │ │ │ └── outline_bequant_text_input_layout.xml │ │ │ ├── drawable-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── connect_keepkey.png │ │ │ │ ├── connect_ledger.png │ │ │ │ ├── connect_trezor.png │ │ │ │ ├── credit_card_buy.png │ │ │ │ ├── holo_dark_ic_action_accounts.png │ │ │ │ ├── holo_dark_ic_action_add_person.png │ │ │ │ ├── holo_dark_ic_action_discard.png │ │ │ │ ├── holo_dark_ic_action_labels.png │ │ │ │ ├── holo_dark_ic_action_new.png │ │ │ │ ├── holo_dark_ic_action_new_account.png │ │ │ │ ├── holo_dark_ic_action_new_usd_account.png │ │ │ │ ├── holo_dark_ic_action_refresh.png │ │ │ │ ├── holo_dark_ic_action_secure.png │ │ │ │ ├── holo_dark_ic_action_warning_yellow.png │ │ │ │ ├── ic_expand_more_white_24dp.png │ │ │ │ ├── ic_fio_notification.png │ │ │ │ ├── ic_keyboard_arrow_right_white_24dp.png │ │ │ │ ├── keepkey_icon.png │ │ │ │ ├── ledger_icon.png │ │ │ │ ├── lt_local_only_warning.png │ │ │ │ ├── multikeys_grey.png │ │ │ │ ├── mycelium_logo_transp.png │ │ │ │ ├── pie_0.png │ │ │ │ ├── pie_1.png │ │ │ │ ├── pie_2.png │ │ │ │ ├── pie_3.png │ │ │ │ ├── pie_4.png │ │ │ │ ├── pie_5.png │ │ │ │ ├── pie_6.png │ │ │ │ ├── pie_send.png │ │ │ │ ├── send.png │ │ │ │ ├── singlekey_grey.png │ │ │ │ ├── tor.png │ │ │ │ ├── tor_gray.png │ │ │ │ ├── trezor_icon_only.png │ │ │ │ ├── trezor_icon_only_small.png │ │ │ │ ├── triangle_se.png │ │ │ │ ├── wallet_receive_icon.png │ │ │ │ ├── wallet_scan_icon.png │ │ │ │ └── wallet_send_icon.png │ │ │ ├── drawable-land-mdpi │ │ │ │ └── background_witherrors_dimmed.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── background_witherrors_dimmed.png │ │ │ │ ├── cover_centered.png │ │ │ │ ├── lt_local_only_warning.png │ │ │ │ ├── multikeys_grey.png │ │ │ │ └── mycelium_logo_transp.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── background_witherrors_dimmed.png │ │ │ │ ├── cover_centered.png │ │ │ │ ├── credit_card_buy.png │ │ │ │ ├── holo_dark_ic_action_accounts.png │ │ │ │ ├── holo_dark_ic_action_add_person.png │ │ │ │ ├── holo_dark_ic_action_discard.png │ │ │ │ ├── holo_dark_ic_action_labels.png │ │ │ │ ├── holo_dark_ic_action_new.png │ │ │ │ ├── holo_dark_ic_action_new_account.png │ │ │ │ ├── holo_dark_ic_action_refresh.png │ │ │ │ ├── holo_dark_ic_action_secure.png │ │ │ │ ├── holo_dark_ic_action_warning_yellow.png │ │ │ │ ├── ic_expand_more_white_24dp.png │ │ │ │ ├── ic_fio_notification.png │ │ │ │ ├── ic_keyboard_arrow_right_white_24dp.png │ │ │ │ ├── lt_local_only_warning.png │ │ │ │ ├── multikeys_grey.png │ │ │ │ ├── mycelium_logo_transp.png │ │ │ │ └── send.png │ │ │ ├── drawable-nodpi │ │ │ │ ├── banner_currencycom_large.png │ │ │ │ ├── banner_currencycom_page.png │ │ │ │ ├── banner_currencycom_small_2.png │ │ │ │ ├── mediaflow_default_picture.png │ │ │ │ └── mycelium_splash_notext_corner.png │ │ │ ├── drawable-port-mdpi │ │ │ │ └── background_witherrors_dimmed.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── credit_card_buy.png │ │ │ │ ├── holo_dark_ic_action_accounts.png │ │ │ │ ├── holo_dark_ic_action_add_person.png │ │ │ │ ├── holo_dark_ic_action_discard.png │ │ │ │ ├── holo_dark_ic_action_labels.png │ │ │ │ ├── holo_dark_ic_action_new.png │ │ │ │ ├── holo_dark_ic_action_new_account.png │ │ │ │ ├── holo_dark_ic_action_refresh.png │ │ │ │ ├── holo_dark_ic_action_secure.png │ │ │ │ ├── holo_dark_ic_action_warning_yellow.png │ │ │ │ ├── ic_expand_more_white_24dp.png │ │ │ │ ├── ic_fio_notification.png │ │ │ │ ├── ic_keyboard_arrow_right_white_24dp.png │ │ │ │ ├── lt_local_only_warning.png │ │ │ │ ├── multikeys_grey.png │ │ │ │ ├── mycelium_logo_transp.png │ │ │ │ ├── notification_icon.png │ │ │ │ ├── send.png │ │ │ │ ├── singlekey_grey.png │ │ │ │ ├── wallet_receive_icon.png │ │ │ │ ├── wallet_scan_icon.png │ │ │ │ └── wallet_send_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── credit_card_buy.png │ │ │ │ ├── holo_dark_ic_action_accounts.png │ │ │ │ ├── holo_dark_ic_action_add_person.png │ │ │ │ ├── holo_dark_ic_action_discard.png │ │ │ │ ├── holo_dark_ic_action_labels.png │ │ │ │ ├── holo_dark_ic_action_new.png │ │ │ │ ├── holo_dark_ic_action_new_account.png │ │ │ │ ├── holo_dark_ic_action_refresh.png │ │ │ │ ├── holo_dark_ic_action_secure.png │ │ │ │ ├── holo_dark_ic_action_warning_yellow.png │ │ │ │ ├── ic_expand_more_white_24dp.png │ │ │ │ ├── ic_fio_notification.png │ │ │ │ ├── ic_keyboard_arrow_right_white_24dp.png │ │ │ │ ├── lt_local_only_warning.png │ │ │ │ ├── multikeys_grey.png │ │ │ │ ├── mycelium_logo_transp.png │ │ │ │ ├── notification_icon.png │ │ │ │ ├── send.png │ │ │ │ ├── singlekey_grey.png │ │ │ │ ├── wallet_receive_icon.png │ │ │ │ ├── wallet_scan_icon.png │ │ │ │ └── wallet_send_icon.png │ │ │ ├── drawable │ │ │ │ ├── action_bar_logo.xml │ │ │ │ ├── action_bar_logo_vip.xml │ │ │ │ ├── action_bar_tab_bar_bg.9.png │ │ │ │ ├── arrow_expanded_selector.xml │ │ │ │ ├── background_action_btn.xml │ │ │ │ ├── background_action_btn_ads.xml │ │ │ │ ├── background_backup.xml │ │ │ │ ├── background_bottom_sheet.xml │ │ │ │ ├── background_fio_create.xml │ │ │ │ ├── background_fio_names_banner.xml │ │ │ │ ├── background_giftbox_item_loading1.xml │ │ │ │ ├── background_launcher_centered.xml │ │ │ │ ├── background_main.xml │ │ │ │ ├── background_news_favorite.xml │ │ │ │ ├── background_news_icon.xml │ │ │ │ ├── background_news_item.xml │ │ │ │ ├── background_news_item_loading1.xml │ │ │ │ ├── background_news_item_loading2.xml │ │ │ │ ├── background_news_item_loading3.xml │ │ │ │ ├── background_news_search.xml │ │ │ │ ├── background_sell_order_card.xml │ │ │ │ ├── background_sell_order_card_own.xml │ │ │ │ ├── background_witherrors_centered.xml │ │ │ │ ├── banner_currencycom_small_1.xml │ │ │ │ ├── banner_currencycom_small_3.xml │ │ │ │ ├── bequant_divider.xml │ │ │ │ ├── bequant_input_cursor.xml │ │ │ │ ├── bequant_intro1_img.xml │ │ │ │ ├── bequant_intro2_img.xml │ │ │ │ ├── bequant_intro3_img.xml │ │ │ │ ├── bequant_intro4_img.xml │ │ │ │ ├── bequant_intro_dot_active.xml │ │ │ │ ├── bequant_intro_dot_inactive.xml │ │ │ │ ├── bequant_logo.xml │ │ │ │ ├── bequant_password_green_line.xml │ │ │ │ ├── bequant_password_red_line.xml │ │ │ │ ├── bequant_password_yellow_line.xml │ │ │ │ ├── bequantprogress.xml │ │ │ │ ├── bequantprogress_failed.xml │ │ │ │ ├── bg_bequant_button.xml │ │ │ │ ├── bg_bequant_button_green.xml │ │ │ │ ├── bg_bequant_button_primary_small.xml │ │ │ │ ├── bg_bequant_button_primary_small_ghost.xml │ │ │ │ ├── bg_bequant_button_small.xml │ │ │ │ ├── bg_bequant_change_percent_green.xml │ │ │ │ ├── bg_bequant_change_percent_red.xml │ │ │ │ ├── bg_bequant_dialog_model.xml │ │ │ │ ├── bg_bequant_exchange_summary.xml │ │ │ │ ├── bg_bequant_exchange_summary_center.xml │ │ │ │ ├── bg_bequant_exchange_summary_lower.xml │ │ │ │ ├── bg_bequant_gray_btn.xml │ │ │ │ ├── bg_bequant_input_text.xml │ │ │ │ ├── bg_bequant_input_text_error.xml │ │ │ │ ├── bg_bequant_loader.xml │ │ │ │ ├── bg_bequant_order_rejected.xml │ │ │ │ ├── bg_bequant_radio_button.xml │ │ │ │ ├── bg_bequant_search.xml │ │ │ │ ├── bg_bequant_text.xml │ │ │ │ ├── bg_bequant_text_with_stroke.xml │ │ │ │ ├── bg_bequant_text_with_stroke_red.xml │ │ │ │ ├── bg_black_circle.xml │ │ │ │ ├── bg_btn_fio.xml │ │ │ │ ├── bg_changelly_chain.xml │ │ │ │ ├── bg_changelly_error.xml │ │ │ │ ├── bg_checkbox_fio_mapping.xml │ │ │ │ ├── bg_close.xml │ │ │ │ ├── bg_coin_account.xml │ │ │ │ ├── bg_coin_value.xml │ │ │ │ ├── bg_fio_new_bubble.xml │ │ │ │ ├── bg_fio_rectangle.xml │ │ │ │ ├── bg_gift_box_tag.xml │ │ │ │ ├── bg_giftbox_new_bubble.xml │ │ │ │ ├── bg_input_text_filled.xml │ │ │ │ ├── bg_input_text_filled_error.xml │ │ │ │ ├── bg_keyboard_item.xml │ │ │ │ ├── bg_keyboard_item_blue.xml │ │ │ │ ├── bg_rmc_profit_meter.xml │ │ │ │ ├── bg_send_coin_batch.xml │ │ │ │ ├── bg_shamir_input.xml │ │ │ │ ├── bg_shamir_share.xml │ │ │ │ ├── bg_vip_icon.xml │ │ │ │ ├── bg_vip_input_text_filled.xml │ │ │ │ ├── border_highlight.xml │ │ │ │ ├── btn_black.xml │ │ │ │ ├── btn_blue.xml │ │ │ │ ├── btn_blue_light_slim.xml │ │ │ │ ├── btn_blue_slim.xml │ │ │ │ ├── btn_gray.xml │ │ │ │ ├── btn_gray_slim.xml │ │ │ │ ├── btn_red.xml │ │ │ │ ├── btn_transparent_slim.xml │ │ │ │ ├── btn_transparent_slim_stroke.xml │ │ │ │ ├── camera_close.xml │ │ │ │ ├── camera_flash_off.xml │ │ │ │ ├── camera_flash_on.xml │ │ │ │ ├── camera_focus.xml │ │ │ │ ├── camera_switch.xml │ │ │ │ ├── checkbox_fio_mapping.xml │ │ │ │ ├── circle_dash_gray.xml │ │ │ │ ├── circle_dash_green.xml │ │ │ │ ├── circle_full_blue.xml │ │ │ │ ├── circle_full_green.xml │ │ │ │ ├── circle_full_white.xml │ │ │ │ ├── circle_line_green.xml │ │ │ │ ├── circle_line_white.xml │ │ │ │ ├── create_fio_name_bg.xml │ │ │ │ ├── dialog_background.xml │ │ │ │ ├── dialog_background_with_margin.xml │ │ │ │ ├── divider_account_list.xml │ │ │ │ ├── divider_bequant.xml │ │ │ │ ├── divider_fio_account_list.xml │ │ │ │ ├── divider_horizontal.xml │ │ │ │ ├── exchange_gradient_green.xml │ │ │ │ ├── exchange_gradient_red.xml │ │ │ │ ├── fio_request_list_expandable_selector.xml │ │ │ │ ├── giftbox_disable_image.xml │ │ │ │ ├── giftbox_promo_background.xml │ │ │ │ ├── giftcard_card_bg.xml │ │ │ │ ├── giftcard_card_small_bg.xml │ │ │ │ ├── ic_add_24px.xml │ │ │ │ ├── ic_address.xml │ │ │ │ ├── ic_arrow_drop_down.xml │ │ │ │ ├── ic_arrow_drop_down_active.xml │ │ │ │ ├── ic_back_to_top.xml │ │ │ │ ├── ic_backspace.xml │ │ │ │ ├── ic_baseline_card_giftcard_24.xml │ │ │ │ ├── ic_baseline_edit_24.xml │ │ │ │ ├── ic_bequant.xml │ │ │ │ ├── ic_bequant_arrow_back.xml │ │ │ │ ├── ic_bequant_arrow_up.xml │ │ │ │ ├── ic_bequant_clear.xml │ │ │ │ ├── ic_bequant_clear_24.xml │ │ │ │ ├── ic_bequant_exchange.xml │ │ │ │ ├── ic_bequant_visibility.xml │ │ │ │ ├── ic_bequant_visibility_off.xml │ │ │ │ ├── ic_bequant_yellow_check_mark.xml │ │ │ │ ├── ic_bitcoin.xml │ │ │ │ ├── ic_bitcoin_tx_change.png │ │ │ │ ├── ic_bitcoin_vault.xml │ │ │ │ ├── ic_btc_exchange.xml │ │ │ │ ├── ic_camera_alt.xml │ │ │ │ ├── ic_chevron.xml │ │ │ │ ├── ic_chevron_down.xml │ │ │ │ ├── ic_chevron_up.xml │ │ │ │ ├── ic_clipboard.xml │ │ │ │ ├── ic_clipboard_outline.xml │ │ │ │ ├── ic_close.xml │ │ │ │ ├── ic_cloud_upload.xml │ │ │ │ ├── ic_complete.xml │ │ │ │ ├── ic_contacts.xml │ │ │ │ ├── ic_content_copy_black.xml │ │ │ │ ├── ic_content_copy_white.xml │ │ │ │ ├── ic_content_copy_white_selector.xml │ │ │ │ ├── ic_content_paste_black.xml │ │ │ │ ├── ic_currencycom.xml │ │ │ │ ├── ic_dash.xml │ │ │ │ ├── ic_date_of_birth.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_deposit.xml │ │ │ │ ├── ic_earth.xml │ │ │ │ ├── ic_edit_fio_name.xml │ │ │ │ ├── ic_education.xml │ │ │ │ ├── ic_erc.xml │ │ │ │ ├── ic_ethereum.xml │ │ │ │ ├── ic_exchange.xml │ │ │ │ ├── ic_exchange_coin.xml │ │ │ │ ├── ic_failed.xml │ │ │ │ ├── ic_favorite.xml │ │ │ │ ├── ic_favorite_small.xml │ │ │ │ ├── ic_fingerprint.xml │ │ │ │ ├── ic_fingerprint_disabled.xml │ │ │ │ ├── ic_fingerprint_selector.xml │ │ │ │ ├── ic_fio_domain.xml │ │ │ │ ├── ic_fio_error.xml │ │ │ │ ├── ic_fio_info.xml │ │ │ │ ├── ic_fio_logo_and_abbr_white.xml │ │ │ │ ├── ic_fio_logo_gray.xml │ │ │ │ ├── ic_fio_name_error.xml │ │ │ │ ├── ic_fio_name_ok.xml │ │ │ │ ├── ic_fio_paid.xml │ │ │ │ ├── ic_fio_right_arrow.xml │ │ │ │ ├── ic_fiopresale_icon_small.xml │ │ │ │ ├── ic_giftbox.xml │ │ │ │ ├── ic_glyph.xml │ │ │ │ ├── ic_history.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_icon.xml │ │ │ │ ├── ic_investment_wallet.xml │ │ │ │ ├── ic_language_24_px.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_list.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_mediaflow_category_default_icon.xml │ │ │ │ ├── ic_micro_otc.xml │ │ │ │ ├── ic_mining.xml │ │ │ │ ├── ic_minus.xml │ │ │ │ ├── ic_minus_disabled.xml │ │ │ │ ├── ic_minus_states.xml │ │ │ │ ├── ic_more_horiz.xml │ │ │ │ ├── ic_more_vert.xml │ │ │ │ ├── ic_nfc_logo.xml │ │ │ │ ├── ic_not_favorite.xml │ │ │ │ ├── ic_notification_icon.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_pen.xml │ │ │ │ ├── ic_plus.xml │ │ │ │ ├── ic_plus_disabled.xml │ │ │ │ ├── ic_plus_nofill.xml │ │ │ │ ├── ic_plus_states.xml │ │ │ │ ├── ic_pref_fiat.xml │ │ │ │ ├── ic_preselected.xml │ │ │ │ ├── ic_print.xml │ │ │ │ ├── ic_progress.xml │ │ │ │ ├── ic_qrcode_scan.xml │ │ │ │ ├── ic_refresh.xml │ │ │ │ ├── ic_request_arrow_down.xml │ │ │ │ ├── ic_request_arrow_up.xml │ │ │ │ ├── ic_request_error.xml │ │ │ │ ├── ic_request_good_to_go.xml │ │ │ │ ├── ic_request_item_circle_gray.xml │ │ │ │ ├── ic_request_item_logo.xml │ │ │ │ ├── ic_request_pending.xml │ │ │ │ ├── ic_request_pending_green.xml │ │ │ │ ├── ic_request_pending_red.xml │ │ │ │ ├── ic_scan.xml │ │ │ │ ├── ic_search.xml │ │ │ │ ├── ic_security.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_share.xml │ │ │ │ ├── ic_share_24px.xml │ │ │ │ ├── ic_text_visibility_off.xml │ │ │ │ ├── ic_tor.xml │ │ │ │ ├── ic_trading.xml │ │ │ │ ├── ic_trending_up_24_px.xml │ │ │ │ ├── ic_two_factor.xml │ │ │ │ ├── ic_vertical_stepper_done.xml │ │ │ │ ├── ic_vertical_stepper_edit.xml │ │ │ │ ├── ic_vip_discount.xml │ │ │ │ ├── ic_vip_icon.xml │ │ │ │ ├── ic_vip_limits.xml │ │ │ │ ├── ic_vip_menu_text.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ ├── indicator_bottom_sheet_drag.xml │ │ │ │ ├── item_action_bg.xml │ │ │ │ ├── item_fio_selector.xml │ │ │ │ ├── item_selector.xml │ │ │ │ ├── keyboard_icon.png │ │ │ │ ├── line_dash_gray.xml │ │ │ │ ├── line_dash_green.xml │ │ │ │ ├── logo_sepa.xml │ │ │ │ ├── mass_icon.png │ │ │ │ ├── mass_icon_no_priv_key.png │ │ │ │ ├── mt_icon.png │ │ │ │ ├── mt_icon_no_priv_key.png │ │ │ │ ├── mycelium_logo_transp_small.png │ │ │ │ ├── news_date_bg.xml │ │ │ │ ├── news_keep_it_so_far.xml │ │ │ │ ├── news_tab_indicator.xml │ │ │ │ ├── pager_indicator_dot.xml │ │ │ │ ├── pager_indicator_dot_selected.xml │ │ │ │ ├── part_of_mycelium_plus_fio_logo.xml │ │ │ │ ├── photo.png │ │ │ │ ├── progress_bar.xml │ │ │ │ ├── purse_small.png │ │ │ │ ├── qr_code.xml │ │ │ │ ├── received_fio_request_info_bg.xml │ │ │ │ ├── rect_background_rounded.xml │ │ │ │ ├── recyclerview_item_bottom_rectangle_selector.xml │ │ │ │ ├── recyclerview_item_rectangle.xml │ │ │ │ ├── recyclerview_item_rectangle_selected.xml │ │ │ │ ├── recyclerview_item_top_rectangle_selector.xml │ │ │ │ ├── recyclerview_item_triangle.xml │ │ │ │ ├── recyclerview_item_triangle_selected.xml │ │ │ │ ├── rmc_bg_active_in_day_text.xml │ │ │ │ ├── rmc_bg_active_progress_bar_state.xml │ │ │ │ ├── rmc_icon.png │ │ │ │ ├── rmc_icon_no_priv_key.png │ │ │ │ ├── round_background.xml │ │ │ │ ├── safervpn_icon_small.png │ │ │ │ ├── send_coin_spinner_selector.xml │ │ │ │ ├── sender_recyclerview_item_background_selector.xml │ │ │ │ ├── sender_recyclerview_item_background_selector2.xml │ │ │ │ ├── sender_recyclerview_item_background_selector_red.xml │ │ │ │ ├── shadow_mediaflow_appbar.xml │ │ │ │ ├── simplex.png │ │ │ │ ├── switch_thumb.xml │ │ │ │ ├── switch_track.xml │ │ │ │ ├── tab_indicator_material.xml │ │ │ │ ├── tab_with_text_bg_selector.xml │ │ │ │ ├── tab_with_text_selector.xml │ │ │ │ ├── trezor2.jpg │ │ │ │ ├── underline.xml │ │ │ │ ├── vertical_stepper_view_item_circle_active.xml │ │ │ │ ├── vertical_stepper_view_item_circle_completed.xml │ │ │ │ ├── vertical_stepper_view_item_circle_error.xml │ │ │ │ └── vertical_stepper_view_item_circle_inactive.xml │ │ │ ├── font │ │ │ │ ├── exo2medium.ttf │ │ │ │ ├── exo2regular.ttf │ │ │ │ ├── roboto_mono_medium.ttf │ │ │ │ └── roboto_mono_regular.ttf │ │ │ ├── layout-land │ │ │ │ └── activity_custom_capture.xml │ │ │ ├── layout │ │ │ │ ├── about_activity.xml │ │ │ │ ├── accounts_title_view.xml │ │ │ │ ├── actionbar_indeterminate_progress.xml │ │ │ │ ├── activity_account_mapping.xml │ │ │ │ ├── activity_additional_backup_warning.xml │ │ │ │ ├── activity_backup_words.xml │ │ │ │ ├── activity_bequant_exchange_select_coin.xml │ │ │ │ ├── activity_bequant_intro.xml │ │ │ │ ├── activity_bequant_kyc.xml │ │ │ │ ├── activity_bequant_kyc_country_of_residence.xml │ │ │ │ ├── activity_bequant_market.xml │ │ │ │ ├── activity_bequant_receive.xml │ │ │ │ ├── activity_bequant_sign.xml │ │ │ │ ├── activity_bip_ss_import.xml │ │ │ │ ├── activity_bit_idauthentication.xml │ │ │ │ ├── activity_buysell_bank_card.xml │ │ │ │ ├── activity_buysell_select_country.xml │ │ │ │ ├── activity_changelly2_exchange.xml │ │ │ │ ├── activity_custom_capture.xml │ │ │ │ ├── activity_exchange.xml │ │ │ │ ├── activity_export_fio_key.xml │ │ │ │ ├── activity_fio_add_address.xml │ │ │ │ ├── activity_get_from_addressbook.xml │ │ │ │ ├── activity_gift_box_root.xml │ │ │ │ ├── activity_instant_ext_sig.xml │ │ │ │ ├── activity_instant_ledger.xml │ │ │ │ ├── activity_instant_masterseed.xml │ │ │ │ ├── activity_message_verify.xml │ │ │ │ ├── activity_news.xml │ │ │ │ ├── activity_news_image.xml │ │ │ │ ├── activity_register_fio_domain.xml │ │ │ │ ├── activity_set_segwit_change.xml │ │ │ │ ├── activity_settings.xml │ │ │ │ ├── activity_shamir_sharing.xml │ │ │ │ ├── activity_two_factor.xml │ │ │ │ ├── activity_verify_words.xml │ │ │ │ ├── adapter_item_change_log_change.xml │ │ │ │ ├── adapter_item_change_log_latest_release.xml │ │ │ │ ├── adapter_item_change_log_release.xml │ │ │ │ ├── add_account_activity.xml │ │ │ │ ├── add_advanced_account_activity.xml │ │ │ │ ├── add_colu_account_activity.xml │ │ │ │ ├── add_to_address_book_dialog.xml │ │ │ │ ├── address_book.xml │ │ │ │ ├── address_book_foreign_row.xml │ │ │ │ ├── address_book_my_address_row.xml │ │ │ │ ├── address_book_sending_row.xml │ │ │ │ ├── address_fragment.xml │ │ │ │ ├── address_fragment_addr.xml │ │ │ │ ├── address_fragment_btc.xml │ │ │ │ ├── address_fragment_btc_address_type.xml │ │ │ │ ├── address_fragment_fioname.xml │ │ │ │ ├── address_fragment_label.xml │ │ │ │ ├── address_fragment_path.xml │ │ │ │ ├── address_fragment_qr.xml │ │ │ │ ├── address_fragment_qr_btc.xml │ │ │ │ ├── archived_accounts_title_view.xml │ │ │ │ ├── backup_verification_warning_dialog.xml │ │ │ │ ├── balance_master_fragment.xml │ │ │ │ ├── btc_account_for_fee_row.xml │ │ │ │ ├── button_big_round_with_text.xml │ │ │ │ ├── buy_sell_service_row.xml │ │ │ │ ├── buy_sell_service_selector.xml │ │ │ │ ├── changelly_activity.xml │ │ │ │ ├── changelly_offer_activity.xml │ │ │ │ ├── checked_item.xml │ │ │ │ ├── cold_storage_summary_activity.xml │ │ │ │ ├── country_item.xml │ │ │ │ ├── create_key_activity.xml │ │ │ │ ├── custom_barcode_scanner.xml │ │ │ │ ├── decrypt_bip38_private_key_activity.xml │ │ │ │ ├── delkey_checkbox.xml │ │ │ │ ├── details_common.xml │ │ │ │ ├── dialog_about_fio_protocol.xml │ │ │ │ ├── dialog_add_erc20_token.xml │ │ │ │ ├── dialog_bequant_date_picker.xml │ │ │ │ ├── dialog_bequant_document_attach.xml │ │ │ │ ├── dialog_bequant_exchange_summary.xml │ │ │ │ ├── dialog_bequant_modal.xml │ │ │ │ ├── dialog_broadcast_transaction.xml │ │ │ │ ├── dialog_exchange_download_confirmation.xml │ │ │ │ ├── dialog_expiration_details.xml │ │ │ │ ├── dialog_ledger_aid.xml │ │ │ │ ├── dialog_mediaflow_filter.xml │ │ │ │ ├── dialog_news_image.xml │ │ │ │ ├── dialog_rmc_reminder.xml │ │ │ │ ├── enter_clear_pin_dialog.xml │ │ │ │ ├── enter_ledger_pin_dialog.xml │ │ │ │ ├── enter_ledger_pin_dialoghex.xml │ │ │ │ ├── enter_ledger_pin_keypad.xml │ │ │ │ ├── enter_ledger_pin_keypadhex.xml │ │ │ │ ├── enter_new_pin_dialog.xml │ │ │ │ ├── enter_pin_dialog.xml │ │ │ │ ├── enter_pin_display.xml │ │ │ │ ├── enter_pin_keypad.xml │ │ │ │ ├── enter_pin_numpad.xml │ │ │ │ ├── enter_pin_numpadhex.xml │ │ │ │ ├── enter_text_dialog.xml │ │ │ │ ├── enter_trezor_pin_dialog.xml │ │ │ │ ├── enter_trezor_pin_keypad.xml │ │ │ │ ├── enter_word_list_activity.xml │ │ │ │ ├── export_as_qr_activity.xml │ │ │ │ ├── export_as_qr_activity_data.xml │ │ │ │ ├── export_as_qr_activity_header.xml │ │ │ │ ├── export_as_qr_activity_qr.xml │ │ │ │ ├── export_as_qr_activity_share.xml │ │ │ │ ├── export_as_qr_activity_type_switch.xml │ │ │ │ ├── export_as_qr_btc_hd_activity.xml │ │ │ │ ├── export_as_qr_btc_hd_activity_key_type_toggle.xml │ │ │ │ ├── export_as_qr_btc_sa_activity.xml │ │ │ │ ├── export_as_qr_btc_sa_activity_key_type_toggle.xml │ │ │ │ ├── export_decrypt_private_key_activity.xml │ │ │ │ ├── export_to_pdf_activity.xml │ │ │ │ ├── fio_address_item.xml │ │ │ │ ├── fio_address_item_header.xml │ │ │ │ ├── fio_memo_input.xml │ │ │ │ ├── fio_protocol_banner_create.xml │ │ │ │ ├── fio_protocol_banner_created.xml │ │ │ │ ├── fio_protocol_banner_fragment.xml │ │ │ │ ├── fio_recieve_activity.xml │ │ │ │ ├── fio_request_create_name.xml │ │ │ │ ├── fio_request_history_view.xml │ │ │ │ ├── fio_request_listrow_group.xml │ │ │ │ ├── fio_request_row.xml │ │ │ │ ├── fio_requests_empty_state_logo.xml │ │ │ │ ├── fio_send_request_activity.xml │ │ │ │ ├── fio_send_request_activity_eth.xml │ │ │ │ ├── fio_send_request_activity_fio.xml │ │ │ │ ├── fio_send_request_buttons.xml │ │ │ │ ├── fio_send_request_info.xml │ │ │ │ ├── fio_send_request_status_activity.xml │ │ │ │ ├── fio_sent_request_status_activity.xml │ │ │ │ ├── fragment_accounts.xml │ │ │ │ ├── fragment_app_update_notification.xml │ │ │ │ ├── fragment_bequant_account.xml │ │ │ │ ├── fragment_bequant_backup_code.xml │ │ │ │ ├── fragment_bequant_change_password.xml │ │ │ │ ├── fragment_bequant_exchange.xml │ │ │ │ ├── fragment_bequant_exchange_select_coin.xml │ │ │ │ ├── fragment_bequant_intro_1.xml │ │ │ │ ├── fragment_bequant_intro_2.xml │ │ │ │ ├── fragment_bequant_intro_3.xml │ │ │ │ ├── fragment_bequant_intro_4.xml │ │ │ │ ├── fragment_bequant_kyc_approved_callback.xml │ │ │ │ ├── fragment_bequant_kyc_final_pending.xml │ │ │ │ ├── fragment_bequant_kyc_final_presubmit.xml │ │ │ │ ├── fragment_bequant_kyc_incomplete_callback.xml │ │ │ │ ├── fragment_bequant_kyc_rejected_callback.xml │ │ │ │ ├── fragment_bequant_kyc_start.xml │ │ │ │ ├── fragment_bequant_kyc_step_3.xml │ │ │ │ ├── fragment_bequant_kyc_verify_phone.xml │ │ │ │ ├── fragment_bequant_main.xml │ │ │ │ ├── fragment_bequant_markets.xml │ │ │ │ ├── fragment_bequant_receive.xml │ │ │ │ ├── fragment_bequant_receive_choose_coin.xml │ │ │ │ ├── fragment_bequant_receive_from_mycelium.xml │ │ │ │ ├── fragment_bequant_receive_show_qr.xml │ │ │ │ ├── fragment_bequant_registration_info.xml │ │ │ │ ├── fragment_bequant_registration_totp.xml │ │ │ │ ├── fragment_bequant_reset_password_info.xml │ │ │ │ ├── fragment_bequant_select_account.xml │ │ │ │ ├── fragment_bequant_setup_code.xml │ │ │ │ ├── fragment_bequant_sign.xml │ │ │ │ ├── fragment_bequant_sign_in.xml │ │ │ │ ├── fragment_bequant_sign_in_reset_password.xml │ │ │ │ ├── fragment_bequant_sign_in_two_factor.xml │ │ │ │ ├── fragment_bequant_sign_up.xml │ │ │ │ ├── fragment_bequant_sign_up_two_factor.xml │ │ │ │ ├── fragment_bequant_steps_1.xml │ │ │ │ ├── fragment_bequant_steps_2.xml │ │ │ │ ├── fragment_bequant_steps_4.xml │ │ │ │ ├── fragment_bequant_withdraw.xml │ │ │ │ ├── fragment_bequant_withdraw_address.xml │ │ │ │ ├── fragment_bequant_withdraw_mycelium_wallet.xml │ │ │ │ ├── fragment_change_log.xml │ │ │ │ ├── fragment_changelly2_exchange.xml │ │ │ │ ├── fragment_changelly2_exchange_result.xml │ │ │ │ ├── fragment_changelly2_history.xml │ │ │ │ ├── fragment_changelly2_select_account.xml │ │ │ │ ├── fragment_country_fail.xml │ │ │ │ ├── fragment_exchage.xml │ │ │ │ ├── fragment_exchage_confirm.xml │ │ │ │ ├── fragment_fio_account_mapping.xml │ │ │ │ ├── fragment_fio_account_mapping_confirm.xml │ │ │ │ ├── fragment_fio_domain_details.xml │ │ │ │ ├── fragment_fio_domains.xml │ │ │ │ ├── fragment_fio_name_details.xml │ │ │ │ ├── fragment_gift_box.xml │ │ │ │ ├── fragment_giftbox_amount.xml │ │ │ │ ├── fragment_giftbox_buy.xml │ │ │ │ ├── fragment_giftbox_buy_result.xml │ │ │ │ ├── fragment_giftbox_details.xml │ │ │ │ ├── fragment_giftbox_details_header.xml │ │ │ │ ├── fragment_giftbox_purchased.xml │ │ │ │ ├── fragment_giftbox_redeem.xml │ │ │ │ ├── fragment_giftbox_select_account.xml │ │ │ │ ├── fragment_giftbox_store_details.xml │ │ │ │ ├── fragment_giftbox_stores.xml │ │ │ │ ├── fragment_help.xml │ │ │ │ ├── fragment_margin_trade.xml │ │ │ │ ├── fragment_news.xml │ │ │ │ ├── fragment_register_fio_domain.xml │ │ │ │ ├── fragment_register_fio_domain_completed.xml │ │ │ │ ├── fragment_register_fio_domain_step1.xml │ │ │ │ ├── fragment_register_fio_domain_step2.xml │ │ │ │ ├── fragment_register_fio_name.xml │ │ │ │ ├── fragment_register_fio_name_completed.xml │ │ │ │ ├── fragment_register_fio_name_confirm.xml │ │ │ │ ├── fragment_register_fio_name_step1.xml │ │ │ │ ├── fragment_register_fio_name_step2.xml │ │ │ │ ├── fragment_renew_fio_domain.xml │ │ │ │ ├── fragment_renew_fio_name.xml │ │ │ │ ├── fragment_select_countries.xml │ │ │ │ ├── fragment_vip.xml │ │ │ │ ├── get_amount_activity.xml │ │ │ │ ├── get_spending_record_activity.xml │ │ │ │ ├── giftbox_banner_create.xml │ │ │ │ ├── giftbox_banner_fragment.xml │ │ │ │ ├── giftcard_send_info.xml │ │ │ │ ├── hd_signing_activity.xml │ │ │ │ ├── instant_wallet_activity.xml │ │ │ │ ├── item_action_button.xml │ │ │ │ ├── item_all_news_search.xml │ │ │ │ ├── item_bequant_account.xml │ │ │ │ ├── item_bequant_coin.xml │ │ │ │ ├── item_bequant_coin_expanded.xml │ │ │ │ ├── item_bequant_coin_selector.xml │ │ │ │ ├── item_bequant_kyc_document.xml │ │ │ │ ├── item_bequant_market.xml │ │ │ │ ├── item_bequant_market_title.xml │ │ │ │ ├── item_bequant_search.xml │ │ │ │ ├── item_bequant_select_account.xml │ │ │ │ ├── item_bequant_select_account_group.xml │ │ │ │ ├── item_bequant_select_account_total.xml │ │ │ │ ├── item_bequant_space.xml │ │ │ │ ├── item_bequant_step.xml │ │ │ │ ├── item_bequant_withdraw_pager_accounts.xml │ │ │ │ ├── item_bequant_withdraw_pager_address.xml │ │ │ │ ├── item_changelly2_history.xml │ │ │ │ ├── item_country.xml │ │ │ │ ├── item_dialog_simplex.xml │ │ │ │ ├── item_fio_account_mapping_account.xml │ │ │ │ ├── item_fio_account_mapping_group.xml │ │ │ │ ├── item_fio_account_mapping_group_wrap.xml │ │ │ │ ├── item_fio_account_mapping_sub_group.xml │ │ │ │ ├── item_fio_address_type.xml │ │ │ │ ├── item_fio_group_row.xml │ │ │ │ ├── item_fio_list_divider.xml │ │ │ │ ├── item_fio_name.xml │ │ │ │ ├── item_fio_name_details_account.xml │ │ │ │ ├── item_fio_register.xml │ │ │ │ ├── item_fio_request_notification_img.xml │ │ │ │ ├── item_gift_box_tag.xml │ │ │ │ ├── item_giftbox_error.xml │ │ │ │ ├── item_giftbox_loading.xml │ │ │ │ ├── item_giftbox_purchaced.xml │ │ │ │ ├── item_giftbox_purchaced_group.xml │ │ │ │ ├── item_giftbox_select_account.xml │ │ │ │ ├── item_giftbox_select_account_group.xml │ │ │ │ ├── item_giftbox_select_account_total.xml │ │ │ │ ├── item_giftbox_store.xml │ │ │ │ ├── item_list_space.xml │ │ │ │ ├── item_mediaflow_banner.xml │ │ │ │ ├── item_mediaflow_item_loading.xml │ │ │ │ ├── item_mediaflow_loading.xml │ │ │ │ ├── item_mediaflow_news_category_btn.xml │ │ │ │ ├── item_mediaflow_news_v2.xml │ │ │ │ ├── item_mediaflow_news_v2_big.xml │ │ │ │ ├── item_mediaflow_news_v2_double.xml │ │ │ │ ├── item_mediaflow_no_bookmarks.xml │ │ │ │ ├── item_mediaflow_turn_off.xml │ │ │ │ ├── item_quad_ads.xml │ │ │ │ ├── item_send_coins_batch.xml │ │ │ │ ├── item_share.xml │ │ │ │ ├── item_space.xml │ │ │ │ ├── item_unspent_output.xml │ │ │ │ ├── layout_account_actoins.xml │ │ │ │ ├── layout_address_fragment_fio_names.xml │ │ │ │ ├── layout_address_fragment_fio_names_dropdown.xml │ │ │ │ ├── layout_bequant_amount.xml │ │ │ │ ├── layout_bequant_loading.xml │ │ │ │ ├── layout_bequant_mycelium_wallet_accounts.xml │ │ │ │ ├── layout_changelly2_coin_value.xml │ │ │ │ ├── layout_dialog_view_msg.xml │ │ │ │ ├── layout_exchange_tab.xml │ │ │ │ ├── layout_fio_dropdown.xml │ │ │ │ ├── layout_fio_dropdown_medium_font.xml │ │ │ │ ├── layout_fio_fiat_spinner.xml │ │ │ │ ├── layout_fio_fiat_spinner_dropdown.xml │ │ │ │ ├── layout_fio_request_notification.xml │ │ │ │ ├── layout_fio_request_notification_big.xml │ │ │ │ ├── layout_gap_input.xml │ │ │ │ ├── layout_giftbox_amount.xml │ │ │ │ ├── layout_giftbox_card_code.xml │ │ │ │ ├── layout_giftbox_card_description.xml │ │ │ │ ├── layout_giftbox_card_description_store.xml │ │ │ │ ├── layout_giftbox_order_scheme.xml │ │ │ │ ├── layout_loading.xml │ │ │ │ ├── layout_news_notification.xml │ │ │ │ ├── layout_password.xml │ │ │ │ ├── layout_password_registration.xml │ │ │ │ ├── layout_receive_fio_names.xml │ │ │ │ ├── layout_receive_fio_names_dropdown.xml │ │ │ │ ├── layout_select_eth_account_to_erc20.xml │ │ │ │ ├── layout_select_eth_account_to_erc20_title.xml │ │ │ │ ├── layout_send_coin_transaction_replace.xml │ │ │ │ ├── layout_send_coin_transaction_replace_dropdown.xml │ │ │ │ ├── layout_spending_from_account.xml │ │ │ │ ├── layout_top_banner.xml │ │ │ │ ├── layout_value_keyboard.xml │ │ │ │ ├── list_item_padding_receiving.xml │ │ │ │ ├── list_item_padding_sender.xml │ │ │ │ ├── list_item_padding_sender_address.xml │ │ │ │ ├── list_item_padding_sending.xml │ │ │ │ ├── listview_item_with_checkbox.xml │ │ │ │ ├── listview_item_with_radiobutton.xml │ │ │ │ ├── lt_active_trade_session_row.xml │ │ │ │ ├── lt_ad_card.xml │ │ │ │ ├── lt_ad_row.xml │ │ │ │ ├── lt_ad_search_fragment.xml │ │ │ │ ├── lt_ads_fragment.xml │ │ │ │ ├── lt_change_location_activity.xml │ │ │ │ ├── lt_change_price_activity.xml │ │ │ │ ├── lt_chat_entry_row.xml │ │ │ │ ├── lt_create_or_edit_ad_activity.xml │ │ │ │ ├── lt_create_trade_1_activity.xml │ │ │ │ ├── lt_create_trader_1_activity.xml │ │ │ │ ├── lt_create_trader_2_activity.xml │ │ │ │ ├── lt_create_trader_3_activity.xml │ │ │ │ ├── lt_enter_fiat_amount_activity.xml │ │ │ │ ├── lt_enter_location_activity.xml │ │ │ │ ├── lt_historic_trade_session_row.xml │ │ │ │ ├── lt_location_item.xml │ │ │ │ ├── lt_my_info_fragment.xml │ │ │ │ ├── lt_recent_trades_fragment.xml │ │ │ │ ├── lt_refresh_price_activity.xml │ │ │ │ ├── lt_send_request_activity.xml │ │ │ │ ├── lt_set_trade_address_activity.xml │ │ │ │ ├── lt_solve_captcha_activity.xml │ │ │ │ ├── lt_trade_activity.xml │ │ │ │ ├── lt_trade_session_row_fetching.xml │ │ │ │ ├── lt_trader_info_fragment.xml │ │ │ │ ├── lt_trader_info_row.xml │ │ │ │ ├── lt_view_trader_info_activity.xml │ │ │ │ ├── main_balance_view.xml │ │ │ │ ├── main_buy_sell_fragment.xml │ │ │ │ ├── main_notice_fragment.xml │ │ │ │ ├── main_recommendation_dialog_view.xml │ │ │ │ ├── main_recommendations_list_banner.xml │ │ │ │ ├── main_recommendations_list_footer.xml │ │ │ │ ├── main_recommendations_list_header.xml │ │ │ │ ├── main_recommendations_list_item.xml │ │ │ │ ├── main_recommendations_view.xml │ │ │ │ ├── main_si_fragment.xml │ │ │ │ ├── main_transaction_history_view.xml │ │ │ │ ├── manual_entry.xml │ │ │ │ ├── media_flow_tab_item.xml │ │ │ │ ├── menu_bequant_try_demo.xml │ │ │ │ ├── message_signing.xml │ │ │ │ ├── modern_main.xml │ │ │ │ ├── number_entry.xml │ │ │ │ ├── optional_message_dialog.xml │ │ │ │ ├── part_bequant_not_receive_email.xml │ │ │ │ ├── part_bequant_step_header.xml │ │ │ │ ├── part_bequant_stepper_body.xml │ │ │ │ ├── passphrase_dialog.xml │ │ │ │ ├── pop_activity.xml │ │ │ │ ├── pop_select_transaction_activity.xml │ │ │ │ ├── popup_activity.xml │ │ │ │ ├── pref_divider_list.xml │ │ │ │ ├── preference_arrow.xml │ │ │ │ ├── preference_on_off.xml │ │ │ │ ├── receive_coins_activity.xml │ │ │ │ ├── receive_coins_activity_addr.xml │ │ │ │ ├── receive_coins_activity_amount.xml │ │ │ │ ├── receive_coins_activity_btc.xml │ │ │ │ ├── receive_coins_activity_btc_addr_type.xml │ │ │ │ ├── receive_coins_activity_fio_name.xml │ │ │ │ ├── receive_coins_activity_heap.xml │ │ │ │ ├── receive_coins_activity_nfc.xml │ │ │ │ ├── receive_coins_activity_qr.xml │ │ │ │ ├── receive_coins_activity_ro.xml │ │ │ │ ├── record_row.xml │ │ │ │ ├── record_row_investment.xml │ │ │ │ ├── record_row_total.xml │ │ │ │ ├── recyclerview_address.xml │ │ │ │ ├── recyclerview_item_fee_lvl.xml │ │ │ │ ├── rmc_address_profit_meter.xml │ │ │ │ ├── rmc_address_statistic.xml │ │ │ │ ├── rmc_address_view.xml │ │ │ │ ├── send_coins_activity.xml │ │ │ │ ├── send_coins_activity_btc.xml │ │ │ │ ├── send_coins_activity_eth.xml │ │ │ │ ├── send_coins_activity_fio.xml │ │ │ │ ├── send_coins_activity_warnings_heap.xml │ │ │ │ ├── send_coins_advanced_block.xml │ │ │ │ ├── send_coins_advanced_eth.xml │ │ │ │ ├── send_coins_amount.xml │ │ │ │ ├── send_coins_enter_recepient.xml │ │ │ │ ├── send_coins_fee_block.xml │ │ │ │ ├── send_coins_fee_block_btc.xml │ │ │ │ ├── send_coins_fee_block_eth.xml │ │ │ │ ├── send_coins_fee_block_fio.xml │ │ │ │ ├── send_coins_fee_description.xml │ │ │ │ ├── send_coins_fee_description_btc.xml │ │ │ │ ├── send_coins_fee_heap.xml │ │ │ │ ├── send_coins_fee_heap_btc.xml │ │ │ │ ├── send_coins_fee_heap_eth.xml │ │ │ │ ├── send_coins_fee_selector.xml │ │ │ │ ├── send_coins_fee_title.xml │ │ │ │ ├── send_coins_fee_title_eth.xml │ │ │ │ ├── send_coins_heading.xml │ │ │ │ ├── send_coins_heading_btc.xml │ │ │ │ ├── send_coins_heading_title.xml │ │ │ │ ├── send_coins_insufficient.xml │ │ │ │ ├── send_coins_insufficient_fio.xml │ │ │ │ ├── send_coins_progress.xml │ │ │ │ ├── send_coins_progress_fio_request.xml │ │ │ │ ├── send_coins_recipient.xml │ │ │ │ ├── send_coins_recipient_address.xml │ │ │ │ ├── send_coins_recipient_btc.xml │ │ │ │ ├── send_coins_recipient_fio.xml │ │ │ │ ├── send_coins_recipient_label.xml │ │ │ │ ├── send_coins_send_section.xml │ │ │ │ ├── send_coins_sender_fio.xml │ │ │ │ ├── send_coins_tx_label.xml │ │ │ │ ├── send_initialization_activity.xml │ │ │ │ ├── settings_local_currency_activity.xml │ │ │ │ ├── show_logs_activity.xml │ │ │ │ ├── sign_ext_sig_transaction_activity.xml │ │ │ │ ├── sign_ledger_transaction_activity.xml │ │ │ │ ├── sign_transaction_activity.xml │ │ │ │ ├── simple_list_item_single_choice.xml │ │ │ │ ├── simple_message_dialog.xml │ │ │ │ ├── simplex_main_activity.xml │ │ │ │ ├── startup_activity.xml │ │ │ │ ├── startup_activity_progress.xml │ │ │ │ ├── stepper_item.xml │ │ │ │ ├── toggleable_currency_display.xml │ │ │ │ ├── token_item.xml │ │ │ │ ├── transaction_details_activity.xml │ │ │ │ ├── transaction_details_btc.xml │ │ │ │ ├── transaction_details_eth.xml │ │ │ │ ├── transaction_details_fio.xml │ │ │ │ ├── transaction_history_fetching.xml │ │ │ │ ├── transaction_row.xml │ │ │ │ ├── two_button_preference.xml │ │ │ │ ├── unspent_outputs_activity.xml │ │ │ │ ├── update_notification.xml │ │ │ │ ├── us_keyboard_fragment.xml │ │ │ │ ├── verify_backup_activity.xml │ │ │ │ ├── verify_payment_request_activity.xml │ │ │ │ ├── vertical_stepper_view_item.xml │ │ │ │ ├── vertical_stepper_view_item_circle.xml │ │ │ │ ├── wait_activity.xml │ │ │ │ ├── word_auto_completer_fragment.xml │ │ │ │ └── wordlist_checkboxes.xml │ │ │ ├── menu │ │ │ │ ├── addressbook_context_menu.xml │ │ │ │ ├── addressbook_options_global.xml │ │ │ │ ├── domain_details_context_menu.xml │ │ │ │ ├── exchange_changelly2.xml │ │ │ │ ├── exchange_changelly2_result.xml │ │ │ │ ├── expiration_details_option.xml │ │ │ │ ├── export_history.xml │ │ │ │ ├── giftbox.xml │ │ │ │ ├── giftbox_details.xml │ │ │ │ ├── giftbox_purchased_list.xml │ │ │ │ ├── giftbox_store.xml │ │ │ │ ├── lt_activity_options_menu.xml │ │ │ │ ├── lt_ads_context_menu.xml │ │ │ │ ├── lt_ads_options_global.xml │ │ │ │ ├── main_activity_options_menu.xml │ │ │ │ ├── menu_bequant_kyc_step.xml │ │ │ │ ├── menu_bequant_market.xml │ │ │ │ ├── menu_bequant_sign.xml │ │ │ │ ├── menu_fio_map_account.xml │ │ │ │ ├── menu_local_currency.xml │ │ │ │ ├── menu_settings.xml │ │ │ │ ├── menu_share.xml │ │ │ │ ├── news.xml │ │ │ │ ├── record_fio_options.xml │ │ │ │ ├── record_options_boost_gap.xml │ │ │ │ ├── record_options_menu.xml │ │ │ │ ├── record_options_menu_about_fio_protocol.xml │ │ │ │ ├── record_options_menu_active.xml │ │ │ │ ├── record_options_menu_add_fio_name.xml │ │ │ │ ├── record_options_menu_archive.xml │ │ │ │ ├── record_options_menu_backup.xml │ │ │ │ ├── record_options_menu_backup_verify.xml │ │ │ │ ├── record_options_menu_delete.xml │ │ │ │ ├── record_options_menu_detach.xml │ │ │ │ ├── record_options_menu_export.xml │ │ │ │ ├── record_options_menu_fio_requests.xml │ │ │ │ ├── record_options_menu_global.xml │ │ │ │ ├── record_options_menu_hide_unused.xml │ │ │ │ ├── record_options_menu_my_fio_names.xml │ │ │ │ ├── record_options_menu_outputs.xml │ │ │ │ ├── record_options_menu_shamir.xml │ │ │ │ ├── record_options_menu_sign.xml │ │ │ │ ├── refresh.xml │ │ │ │ ├── shamir.xml │ │ │ │ ├── transaction_history_context_menu.xml │ │ │ │ ├── transaction_history_options_global.xml │ │ │ │ └── verify_message.xml │ │ │ ├── navigation │ │ │ │ ├── bequant_kyc.xml │ │ │ │ ├── bequant_main.xml │ │ │ │ ├── bequant_sign.xml │ │ │ │ ├── bequant_two_factor.xml │ │ │ │ ├── changelly2.xml │ │ │ │ ├── fio_map_account.xml │ │ │ │ ├── giftbox.xml │ │ │ │ ├── register_fio_domain_steps.xml │ │ │ │ └── register_fio_name_steps.xml │ │ │ ├── raw │ │ │ │ ├── license_mycelium.txt │ │ │ │ ├── license_pdfwriter.txt │ │ │ │ ├── license_zxing.txt │ │ │ │ ├── mycelium_vip_logo.json │ │ │ │ ├── special_thanks.txt │ │ │ │ └── tou_mycelium.txt │ │ │ ├── values-az │ │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ ├── plurals.xml │ │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ ├── plurals.xml │ │ │ │ └── strings.xml │ │ │ ├── values-fil │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ ├── plurals.xml │ │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ ├── plurals.xml │ │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ ├── values-sw240dp │ │ │ │ └── dimens.xml │ │ │ ├── values-sw320dp │ │ │ │ └── dimens.xml │ │ │ ├── values-sw400dp │ │ │ │ └── dimens.xml │ │ │ ├── values-sw600dp │ │ │ │ └── dimens.xml │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ │ └── strings.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── values-zh-rTW │ │ │ │ └── strings.xml │ │ │ ├── values-zh │ │ │ │ └── strings.xml │ │ │ ├── values │ │ │ │ ├── arrays.xml │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── plurals.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_nolocale.xml │ │ │ │ └── styles.xml │ │ │ └── xml │ │ │ │ ├── changelog_master.xml │ │ │ │ ├── my_paths.xml │ │ │ │ ├── network_security_config.xml │ │ │ │ ├── preferences.xml │ │ │ │ ├── preferences_external_service.xml │ │ │ │ ├── preferences_notifications.xml │ │ │ │ ├── preferences_pincode.xml │ │ │ │ └── preferences_versions.xml │ │ ├── sqldelight │ │ │ └── com │ │ │ │ └── mycelium │ │ │ │ └── generated │ │ │ │ └── giftbox │ │ │ │ └── database │ │ │ │ ├── 1.sqm │ │ │ │ ├── 2.sqm │ │ │ │ ├── 3.sqm │ │ │ │ ├── GiftboxCard.sq │ │ │ │ └── GiftboxProduct.sq │ │ ├── sqldelight_logger │ │ │ └── com │ │ │ │ └── mycelium │ │ │ │ └── generated │ │ │ │ └── logger │ │ │ │ └── database │ │ │ │ └── Logs.sq │ │ └── sqldelight_rate │ │ │ └── com │ │ │ └── mycelium │ │ │ └── generated │ │ │ └── rates │ │ │ └── database │ │ │ └── Rates.sq │ ├── prodnet │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── prodnetDebug │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable │ │ │ └── ic_launcher_foreground.xml │ └── test │ │ └── java │ │ └── com │ │ └── mycelium │ │ └── wallet │ │ ├── ColuAssetUriTest.java │ │ ├── UtilsTest.java │ │ ├── activity │ │ └── send │ │ │ └── helper │ │ │ ├── ExponentialFeeItemsAlgorithmTest.java │ │ │ └── FeeItemsAlgorithmTest.java │ │ └── external │ │ └── changelly │ │ ├── ExchangeLoggingServiceTest.java │ │ └── bch │ │ └── BCHBechAddressTest.java └── updateTranslations.sh ├── mbwlib ├── README.md ├── build.gradle └── src │ ├── main │ └── java │ │ ├── com │ │ └── mycelium │ │ │ ├── metadata │ │ │ └── backup │ │ │ │ ├── BackupPayload.java │ │ │ │ └── MerkleTree.java │ │ │ ├── net │ │ │ ├── FeedbackEndpoint.java │ │ │ ├── HiddenServiceInetAddress.java │ │ │ ├── HttpEndpoint.java │ │ │ ├── HttpsEndpoint.java │ │ │ ├── ServerEndpointType.java │ │ │ ├── ServerEndpoints.java │ │ │ ├── TorHttpsEndpoint.java │ │ │ ├── TorManager.java │ │ │ └── TorManagerOrbot.java │ │ │ ├── paymentrequest │ │ │ ├── PaymentRequestException.java │ │ │ ├── PaymentRequestInformation.java │ │ │ ├── PkiVerificationData.java │ │ │ └── proto │ │ │ │ ├── paymentrequest.proto │ │ │ │ ├── readme.md │ │ │ │ └── wire-compiler.jar │ │ │ └── wallet │ │ │ └── pop │ │ │ ├── PopRequest.java │ │ │ └── PopURIDecoder.java │ │ ├── nl │ │ └── garvelink │ │ │ └── iban │ │ │ ├── CountryCodes.java │ │ │ ├── IBAN.java │ │ │ └── Modulo97.java │ │ └── org │ │ └── bitcoin │ │ └── protocols │ │ └── payments │ │ ├── Output.java │ │ ├── Payment.java │ │ ├── PaymentACK.java │ │ ├── PaymentDetails.java │ │ ├── PaymentRequest.java │ │ └── X509Certificates.java │ └── test │ ├── java │ └── com │ │ └── mycelium │ │ ├── metadata │ │ └── backup │ │ │ ├── BackupPayloadTest.java │ │ │ └── MerkleTreeTest.java │ │ ├── paymentrequest │ │ └── PaymentRequestInformationTest.java │ │ └── wallet │ │ └── pop │ │ └── PopRequestTest.java │ └── resources │ ├── cacerts │ ├── noSig.bitcoinpaymentrequest │ └── validSig.bitcoinpaymentrequest ├── settings.gradle ├── testhelper ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── mycelium │ └── testhelper │ └── SignatureTestVectors.kt ├── tools.gradle ├── trezor ├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.rst ├── build.gradle ├── build_pb.sh ├── libs │ └── protobuf-java-2.5.0.jar ├── lint.xml └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── satoshilabs │ │ └── trezor │ │ └── lib │ │ ├── ExtSigDeviceConnectionException.java │ │ ├── ExternalSignatureDevice.java │ │ ├── KeepKey.java │ │ ├── Trezor.java │ │ ├── UsbReceiver.kt │ │ └── protobuf │ │ ├── TrezorMessage.java │ │ └── TrezorType.java │ └── test │ └── java │ └── com │ └── satoshilabs │ └── trezor │ └── VersionNumberTest.java ├── view ├── .gitignore ├── README.md ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ ├── androidx │ │ └── recyclerview │ │ │ └── widget │ │ │ ├── CenterLayoutManager.java │ │ │ └── InfiniteLinearLayoutManager.java │ └── com │ │ ├── mycelium │ │ └── view │ │ │ ├── AutoHeightViewPager.kt │ │ │ ├── Denomination.kt │ │ │ ├── ItemCentralizer.java │ │ │ ├── RingDrawable.kt │ │ │ ├── TextDrawable.kt │ │ │ └── adapter │ │ │ └── DialogListAdapter.java │ │ └── poovam │ │ └── pinedittextfield │ │ ├── PinField.kt │ │ ├── SquarePinField.kt │ │ └── Util.java │ └── res │ ├── color │ ├── btn_text_color.xml │ ├── btn_text_color_white.xml │ └── preference_title_color.xml │ ├── drawable │ ├── arrow_bottom.xml │ ├── background_action_btn.xml │ ├── background_action_btn_blue.xml │ ├── background_window.xml │ ├── dialog_background_pref.xml │ ├── ic_back_arrow.xml │ ├── ic_bequant_back_arrow.xml │ ├── input_cursor.xml │ ├── pref_category_divider.xml │ ├── pref_category_divider_end.xml │ ├── pref_category_divider_first.xml │ ├── pref_list_divider.xml │ ├── preference_switch.xml │ ├── preference_switch_track.xml │ ├── switch_thumb_off.xml │ ├── switch_thumb_on.xml │ ├── switch_track_off.xml │ ├── switch_track_on.xml │ └── text_handle.xml │ ├── layout │ ├── dialog_list_checked_button.xml │ ├── dialog_pref_list.xml │ ├── preference_button.xml │ ├── preference_button_uninstall.xml │ ├── preference_category_end_space.xml │ ├── preference_category_layout.xml │ ├── preference_category_layout_first_item.xml │ ├── preference_key_value_layout.xml │ ├── preference_layout.xml │ ├── preference_layout_no_icon.xml │ ├── preference_module_layout.xml │ └── preference_switch.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── wallet-console ├── build.gradle ├── integration-test.gradle └── src │ └── main │ └── java │ └── com │ └── mycelium │ └── WalletConsole.java ├── walletcore ├── README.md ├── build.gradle ├── integration-test.gradle └── src │ ├── integrationTest │ └── java │ │ ├── BtcAssetBasicTest.kt │ │ └── MtAssetBasicTest.kt │ ├── main │ ├── java │ │ └── com │ │ │ ├── mrd │ │ │ └── bitlib │ │ │ │ └── model │ │ │ │ └── BtcvSegwitAddress.kt │ │ │ └── mycelium │ │ │ └── wapi │ │ │ ├── Constants.java │ │ │ ├── SyncStatus.kt │ │ │ ├── content │ │ │ ├── AssetUri.kt │ │ │ ├── AssetUriParser.kt │ │ │ ├── ContentResolver.kt │ │ │ ├── FallbackUri.kt │ │ │ ├── WithCallback.kt │ │ │ ├── btc │ │ │ │ ├── BitcoinUri.kt │ │ │ │ └── BitcoinUriParser.kt │ │ │ ├── btcv │ │ │ │ ├── BitcoinVaultUri.kt │ │ │ │ └── BitcoinVaultUriParser.kt │ │ │ ├── colu │ │ │ │ ├── ColuAssetUri.kt │ │ │ │ ├── mss │ │ │ │ │ ├── MSSUri.kt │ │ │ │ │ └── MSSUriParser.kt │ │ │ │ ├── mt │ │ │ │ │ ├── MTUri.kt │ │ │ │ │ └── MTUriParser.kt │ │ │ │ └── rmc │ │ │ │ │ ├── RMCUri.kt │ │ │ │ │ └── RMCUriParser.kt │ │ │ ├── eth │ │ │ │ ├── EthUri.kt │ │ │ │ └── EthUriParser.kt │ │ │ └── fio │ │ │ │ ├── FIOUri.kt │ │ │ │ ├── FIOUriParser.kt │ │ │ │ └── FioUtils.kt │ │ │ └── wallet │ │ │ ├── AbstractAccountContext.java │ │ │ ├── AccountIndexesContext.kt │ │ │ ├── AccountListener.kt │ │ │ ├── AccountProvider.java │ │ │ ├── AccountScanManager.kt │ │ │ ├── Address.kt │ │ │ ├── AddressContainer.kt │ │ │ ├── AddressUtils.java │ │ │ ├── AesKeyCipher.java │ │ │ ├── BitcoinBasedTransaction.kt │ │ │ ├── BroadcastResult.java │ │ │ ├── BroadcastResultType.java │ │ │ ├── ColuTransferInstructionsParser.java │ │ │ ├── CommonAccountBacking.java │ │ │ ├── CommonNetworkParameters.kt │ │ │ ├── CurrencySettings.kt │ │ │ ├── EthTransactionSummary.kt │ │ │ ├── ExportableAccount.kt │ │ │ ├── Fee.kt │ │ │ ├── FeeEstimationsGeneric.kt │ │ │ ├── IServerFioEventsPublisher.kt │ │ │ ├── IdentityAccountKeyManager.java │ │ │ ├── InputViewModel.kt │ │ │ ├── KeyCipher.java │ │ │ ├── LoadgingProgressTracker.kt │ │ │ ├── LoadingProgressStatus.kt │ │ │ ├── LoadingProgressUpdater.kt │ │ │ ├── OutputViewModel.kt │ │ │ ├── SecureKeyValueStore.java │ │ │ ├── SecureKeyValueStoreBacking.java │ │ │ ├── SecureSubKeyValueStore.java │ │ │ ├── SingleAddressBtcAccountBacking.java │ │ │ ├── SyncMode.java │ │ │ ├── SyncPausable.kt │ │ │ ├── SynchronizeFinishedListener.kt │ │ │ ├── Transaction.java │ │ │ ├── TransactionData.kt │ │ │ ├── TransactionSummary.kt │ │ │ ├── Util.kt │ │ │ ├── WalletAccount.kt │ │ │ ├── WalletBacking.java │ │ │ ├── WalletManager.kt │ │ │ ├── bch │ │ │ ├── bip44 │ │ │ │ ├── Bip44BCHAccount.kt │ │ │ │ └── Bip44BCHHDModule.kt │ │ │ ├── coins │ │ │ │ ├── BchCoin.kt │ │ │ │ ├── BchMain.kt │ │ │ │ └── BchTest.kt │ │ │ └── single │ │ │ │ ├── BitcoinCashSingleAddressModule.kt │ │ │ │ └── SingleAddressBCHAccount.kt │ │ │ ├── btc │ │ │ ├── AbstractBtcAccount.kt │ │ │ ├── BTCSettings.kt │ │ │ ├── Bip44BtcAccountBacking.java │ │ │ ├── BtcAccountBacking.java │ │ │ ├── BtcAddress.java │ │ │ ├── BtcReceiver.java │ │ │ ├── BtcTransaction.kt │ │ │ ├── BtcWalletManagerBacking.java │ │ │ ├── ChangeAddressMode.kt │ │ │ ├── FeePerKbFee.kt │ │ │ ├── InMemoryBtcWalletManagerBacking.java │ │ │ ├── PrivateKeyProvider.kt │ │ │ ├── SynchronizeAbleWalletBtcAccount.kt │ │ │ ├── WalletBtcAccount.java │ │ │ ├── bip44 │ │ │ │ ├── AddressesListProvider.kt │ │ │ │ ├── BitcoinHDModule.kt │ │ │ │ ├── ExternalSignatureProvider.java │ │ │ │ ├── ExternalSignatureProviderProxy.java │ │ │ │ ├── HDAccount.kt │ │ │ │ ├── HDAccountContext.kt │ │ │ │ ├── HDAccountExternalSignature.kt │ │ │ │ ├── HDAccountKeyManager.java │ │ │ │ ├── HDPubOnlyAccount.kt │ │ │ │ ├── HDPubOnlyAccountKeyManager.java │ │ │ │ └── UnrelatedHDAccountConfig.kt │ │ │ ├── coins │ │ │ │ ├── BitcoinMain.kt │ │ │ │ └── BitcoinTest.kt │ │ │ └── single │ │ │ │ ├── BitcoinSingleAddressModule.kt │ │ │ │ ├── PublicPrivateKeyStore.java │ │ │ │ ├── SingleAddressAccount.kt │ │ │ │ ├── SingleAddressAccountContext.kt │ │ │ │ └── SingleConfig.kt │ │ │ ├── btcvault │ │ │ ├── AbstractBtcvAccount.kt │ │ │ ├── BTCVNetworkParameters.kt │ │ │ ├── BtcvAddress.kt │ │ │ ├── BtcvAddressFactory.kt │ │ │ ├── BtcvReceiver.kt │ │ │ ├── BtcvTransaction.kt │ │ │ ├── SynchronizeAbleWalletAccount.kt │ │ │ ├── coins │ │ │ │ ├── BitcoinVaultMain.kt │ │ │ │ └── BitcoinVaultTest.kt │ │ │ └── hd │ │ │ │ ├── BitcoinVaultConfig.kt │ │ │ │ ├── BitcoinVaultHDAccountBacking.kt │ │ │ │ ├── BitcoinVaultHDAccountContext.kt │ │ │ │ ├── BitcoinVaultHDBacking.kt │ │ │ │ ├── BitcoinVaultHDModule.kt │ │ │ │ └── BitcoinVaultHdAccount.kt │ │ │ ├── coins │ │ │ ├── AbstractAsset.java │ │ │ ├── AssetInfo.java │ │ │ ├── Balance.java │ │ │ ├── Coins.kt │ │ │ ├── CryptoCurrency.java │ │ │ ├── FeePolicy.java │ │ │ ├── SoftDustPolicy.java │ │ │ └── Value.kt │ │ │ ├── colu │ │ │ ├── AdvancedHttpClient.java │ │ │ ├── ColuAccount.kt │ │ │ ├── ColuAccountBacking.java │ │ │ ├── ColuAccountContext.kt │ │ │ ├── ColuApi.kt │ │ │ ├── ColuApiImpl.kt │ │ │ ├── ColuClient.java │ │ │ ├── ColuConfig.kt │ │ │ ├── ColuModule.kt │ │ │ ├── ColuTransaction.kt │ │ │ ├── ColuUtils.java │ │ │ ├── ColuWalletManagerBacking.kt │ │ │ ├── InMemoryColuWalletManagerBacking.kt │ │ │ ├── coins │ │ │ │ ├── ColuMain.kt │ │ │ │ ├── MASSCoin.kt │ │ │ │ ├── MTCoin.kt │ │ │ │ └── RMCCoin.kt │ │ │ └── json │ │ │ │ ├── AddressInfo.java │ │ │ │ ├── AddressTransactionsInfo.java │ │ │ │ ├── Asset.java │ │ │ │ ├── AssetBalance.java │ │ │ │ ├── AssetMetadata.java │ │ │ │ ├── ColuBroadcastTxHex.java │ │ │ │ ├── ColuBroadcastTxId.java │ │ │ │ ├── ColuPreparedTransaction.java │ │ │ │ ├── ColuSendAsset.java │ │ │ │ ├── ColuTransactionRequest.java │ │ │ │ ├── ColuTxDest.java │ │ │ │ ├── ColuTxDetailsItem.java │ │ │ │ ├── ColuTxFlags.java │ │ │ │ ├── PreviousOutput.java │ │ │ │ ├── ScriptPubKey.java │ │ │ │ ├── ScriptSig.java │ │ │ │ ├── Tx.java │ │ │ │ ├── Utxo.java │ │ │ │ ├── Vin.java │ │ │ │ └── Vout.java │ │ │ ├── erc20 │ │ │ ├── ERC20Account.kt │ │ │ ├── ERC20AccountContext.kt │ │ │ ├── ERC20Backing.kt │ │ │ ├── ERC20Config.kt │ │ │ ├── ERC20Module.kt │ │ │ ├── StandardToken.kt │ │ │ └── coins │ │ │ │ └── ERC20Token.kt │ │ │ ├── eth │ │ │ ├── AbstractEthERC20Account.kt │ │ │ ├── EthAccount.kt │ │ │ ├── EthAccountContext.kt │ │ │ ├── EthAddress.kt │ │ │ ├── EthBacking.kt │ │ │ ├── EthBlockchainService.kt │ │ │ ├── EthSyncChecker.kt │ │ │ ├── EthTransaction.kt │ │ │ ├── EthTransactionData.kt │ │ │ ├── EthereumMasterseedConfig.kt │ │ │ ├── EthereumModule.kt │ │ │ ├── EthereumSettings.kt │ │ │ └── coins │ │ │ │ ├── EthCoin.kt │ │ │ │ ├── EthMain.kt │ │ │ │ └── EthTest.kt │ │ │ ├── exceptions │ │ │ ├── BuildTransactionException.java │ │ │ ├── InsufficientFundsException.java │ │ │ ├── InsufficientFundsForFeeException.kt │ │ │ ├── OutputTooSmallException.java │ │ │ └── TransactionBroadcastException.java │ │ │ ├── fiat │ │ │ └── coins │ │ │ │ └── FiatType.java │ │ │ ├── fio │ │ │ ├── FIOMasterseedConfig.kt │ │ │ ├── FIONameService.kt │ │ │ ├── FIOSettings.kt │ │ │ ├── FioAccount.kt │ │ │ ├── FioAccountBacking.kt │ │ │ ├── FioAccountContext.kt │ │ │ ├── FioAddress.kt │ │ │ ├── FioAddressData.kt │ │ │ ├── FioApiEndpoints.kt │ │ │ ├── FioBacking.kt │ │ │ ├── FioBalanceService.kt │ │ │ ├── FioBlockchainService.kt │ │ │ ├── FioEndpoints.kt │ │ │ ├── FioGroup.kt │ │ │ ├── FioHistoryEndpoints.kt │ │ │ ├── FioKeyManager.kt │ │ │ ├── FioModule.kt │ │ │ ├── FioName.kt │ │ │ ├── FioRequestStatus.kt │ │ │ ├── FioTransaction.kt │ │ │ ├── FioTransactionSummary.kt │ │ │ ├── IAbiFioSerializationProviderWrapper.kt │ │ │ └── coins │ │ │ │ ├── FIOMain.kt │ │ │ │ ├── FIOTest.kt │ │ │ │ └── FIOToken.kt │ │ │ ├── genericdb │ │ │ ├── AccountContextImpl.kt │ │ │ ├── AccountContextsBacking.kt │ │ │ ├── Adapters.kt │ │ │ ├── Backing.kt │ │ │ ├── EthAccountBacking.kt │ │ │ ├── FeeEstimationsBacking.kt │ │ │ ├── InMemoryAccountContextsBacking.kt │ │ │ └── LongColumnAdapter.kt │ │ │ ├── manager │ │ │ ├── AddressFactory.kt │ │ │ ├── Config.kt │ │ │ ├── FeeEstimations.kt │ │ │ ├── HDAccountKeyManager.kt │ │ │ ├── State.kt │ │ │ ├── Synchronizer.kt │ │ │ ├── WalletListener.kt │ │ │ └── WalletModule.kt │ │ │ ├── masterseed │ │ │ ├── Listener.kt │ │ │ └── MasterSeedManager.kt │ │ │ ├── metadata │ │ │ ├── IMetaDataStorage.java │ │ │ ├── MetadataCategory.java │ │ │ └── MetadataKeyCategory.java │ │ │ └── providers │ │ │ ├── BtcFeeProvider.kt │ │ │ ├── BtcvFeeProvider.kt │ │ │ ├── ColuFeeProvider.kt │ │ │ ├── EthFeeProvider.kt │ │ │ ├── FeeProvider.kt │ │ │ ├── FioFeeProvider.kt │ │ │ └── WapiFeeProvider.kt │ └── sqldelight │ │ └── com │ │ └── mycelium │ │ └── generated │ │ └── wallet │ │ └── database │ │ ├── 1.sqm │ │ ├── 10.sqm │ │ ├── 11.sqm │ │ ├── 12.sqm │ │ ├── 2.sqm │ │ ├── 3.sqm │ │ ├── 4.sqm │ │ ├── 5.sqm │ │ ├── 6.sqm │ │ ├── 7.sqm │ │ ├── 8.sqm │ │ ├── 9.sqm │ │ ├── AccountBacking.sq │ │ ├── AccountContext.sq │ │ ├── BTCVAccountBacking.sq │ │ ├── BTCVContext.sq │ │ ├── BTCVOutgoingTx.sq │ │ ├── BTCVPtxo.sq │ │ ├── BTCVRefersPtxo.sq │ │ ├── BTCVTransaction.sq │ │ ├── BTCVUtxo.sq │ │ ├── ERC20Context.sq │ │ ├── EthAccountBacking.sq │ │ ├── EthContext.sq │ │ ├── FeeEstimations.sq │ │ ├── FioAccountBacking.sq │ │ ├── FioContext.sq │ │ ├── FioKnownNames.sq │ │ ├── FioNameAccountMappings.sq │ │ ├── FioOtherBlockchainTransactions.sq │ │ ├── FioRequestsReceivedBacking.sq │ │ └── FioRequestsSentBacking.sq │ └── test │ └── java │ └── com │ └── mycelium │ └── wapi │ ├── ColuTransferInstructionsParserTest.java │ ├── content │ └── btc │ │ └── BitcoinUriTest.kt │ └── wallet │ ├── BitIdKeyDerivationTest.kt │ ├── ErrorCollectionRequestTest.java │ ├── Node3Test.java │ ├── SecureKeyValueStoreTest.kt │ ├── UpdateCheckTest.java │ ├── UtilTest.kt │ ├── bip44 │ ├── BitcoinHDModuleTest.kt │ └── HDAccountTest.java │ ├── currency │ ├── CurrencySumTest.java │ ├── CurrencyValueTest.java │ ├── ExchangeBasedCurrencyValueTest.java │ └── test │ │ └── AssertHelper.java │ ├── fio │ ├── FioKeyManagerTest.kt │ └── FioTestUtils.kt │ ├── manager │ └── HDAccountKeyManagerTest.kt │ └── single │ └── SingleAddressAccountContextTest.kt ├── walletmodel ├── README.md ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── mycelium │ └── wapi │ ├── model │ ├── BalanceSatoshis.java │ ├── ExchangeRate.java │ ├── IssuedKeysInfo.java │ ├── TransactionDetails.java │ ├── TransactionEx.java │ ├── TransactionOutputEx.java │ ├── TransactionOutputSummary.java │ ├── TransactionStatus.java │ └── TransactionSummary.java │ └── wallet │ ├── ConfirmationRiskProfileLocal.java │ └── currency │ ├── BitcoinValue.java │ ├── CurrencyBasedBalance.java │ ├── CurrencySum.java │ ├── CurrencyValue.java │ ├── ExactBitcoinCashValue.java │ ├── ExactBitcoinValue.java │ ├── ExactCurrencyValue.java │ ├── ExactFiatValue.java │ ├── ExchangeBasedBitcoinCashValue.java │ ├── ExchangeBasedBitcoinValue.java │ ├── ExchangeBasedCurrencyValue.java │ ├── ExchangeBasedFiatValue.java │ └── ExchangeRateProvider.java └── wapi ├── .classpath ├── .gitignore ├── .project ├── LICENSE ├── README.md ├── build.gradle ├── lint.xml └── src ├── main └── java │ └── com │ └── mycelium │ └── wapi │ └── api │ ├── Wapi.kt │ ├── WapiClient.java │ ├── WapiClientElectrumX.kt │ ├── WapiClientLifecycle.kt │ ├── WapiConst.kt │ ├── WapiException.java │ ├── WapiJsonModule.java │ ├── WapiResponse.java │ ├── exception │ ├── DbCorruptedException.java │ └── RpcResponseException.java │ ├── jsonrpc │ ├── JsonRpcTcpClient.kt │ ├── RPC.kt │ ├── RpcError.kt │ ├── RpcParams.kt │ ├── RpcRequest.kt │ ├── RpcResponse.kt │ └── Subscription.kt │ ├── lib │ ├── CurrencyCode.java │ ├── ErrorMetaData.java │ ├── FeeEstimation.java │ ├── FeeEstimationMap.java │ ├── TransactionExApi.java │ └── WalletVersion.java │ ├── request │ ├── BroadcastTransactionRequest.java │ ├── CancelableRequest.kt │ ├── CheckTransactionsRequest.java │ ├── ErrorCollectorRequest.java │ ├── GetExchangeRatesRequest.kt │ ├── GetTransactionsRequest.java │ ├── QueryTransactionInventoryRequest.java │ ├── QueryUnspentOutputsRequest.java │ ├── VersionInfoExRequest.java │ └── VersionInfoRequest.java │ └── response │ ├── BroadcastTransactionResponse.java │ ├── CheckTransactionsResponse.java │ ├── ErrorCollectorResponse.java │ ├── Feature.java │ ├── FeatureWarning.java │ ├── GetExchangeRatesResponse.kt │ ├── GetTransactionsResponse.java │ ├── MinerFeeEstimationResponse.java │ ├── PingResponse.java │ ├── QueryTransactionInventoryResponse.java │ ├── QueryUnspentOutputsResponse.java │ ├── VersionInfoExResponse.java │ ├── VersionInfoResponse.java │ └── WarningKind.java └── test └── java └── com └── mycelium └── wapi └── api └── WapiClientElectrumXTest.kt /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/.github/workflows/rc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/LICENSE -------------------------------------------------------------------------------- /LVL/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/LVL/build.gradle -------------------------------------------------------------------------------- /LVL/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/LVL/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/README.md -------------------------------------------------------------------------------- /apkdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/apkdiff.py -------------------------------------------------------------------------------- /backuputil/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/backuputil/Readme.md -------------------------------------------------------------------------------- /backuputil/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/backuputil/build.gradle -------------------------------------------------------------------------------- /bitlib/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | dist 4 | out 5 | -------------------------------------------------------------------------------- /bitlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/LICENSE -------------------------------------------------------------------------------- /bitlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/README.md -------------------------------------------------------------------------------- /bitlib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/build.gradle -------------------------------------------------------------------------------- /bitlib/src/main/java/Rijndael/Rijndael.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/Rijndael/Rijndael.java -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/FeeEstimator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/FeeEstimator.kt -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/PopBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/PopBuilder.kt -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/crypto/BipSss.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/crypto/BipSss.kt -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/crypto/Ecdh.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/crypto/Ecdh.kt -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/crypto/Hmac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/crypto/Hmac.java -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/model/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/model/Block.java -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/util/KeyUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/util/KeyUtils.kt -------------------------------------------------------------------------------- /bitlib/src/main/java/com/mrd/bitlib/util/VarInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/com/mrd/bitlib/util/VarInt.java -------------------------------------------------------------------------------- /bitlib/src/main/java/se/grunka/fortuna/Counter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/se/grunka/fortuna/Counter.java -------------------------------------------------------------------------------- /bitlib/src/main/java/se/grunka/fortuna/Fortuna.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/se/grunka/fortuna/Fortuna.java -------------------------------------------------------------------------------- /bitlib/src/main/java/se/grunka/fortuna/Pool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/se/grunka/fortuna/Pool.java -------------------------------------------------------------------------------- /bitlib/src/main/java/se/grunka/fortuna/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/main/java/se/grunka/fortuna/Util.java -------------------------------------------------------------------------------- /bitlib/src/test/java/com/mrd/bitlib/Base58Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/test/java/com/mrd/bitlib/Base58Test.java -------------------------------------------------------------------------------- /bitlib/src/test/java/com/mrd/bitlib/Bip39Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/test/java/com/mrd/bitlib/Bip39Test.java -------------------------------------------------------------------------------- /bitlib/src/test/java/se/grunka/fortuna/PoolTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/bitlib/src/test/java/se/grunka/fortuna/PoolTest.java -------------------------------------------------------------------------------- /btchip/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/AndroidManifest.xml -------------------------------------------------------------------------------- /btchip/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /btchip/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/build.gradle -------------------------------------------------------------------------------- /btchip/src/main/java/com/btchip/BTChipConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/src/main/java/com/btchip/BTChipConstants.java -------------------------------------------------------------------------------- /btchip/src/main/java/com/btchip/BTChipDongle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/src/main/java/com/btchip/BTChipDongle.java -------------------------------------------------------------------------------- /btchip/src/main/java/com/btchip/BTChipException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/src/main/java/com/btchip/BTChipException.java -------------------------------------------------------------------------------- /btchip/src/main/java/com/btchip/utils/Dump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/src/main/java/com/btchip/utils/Dump.java -------------------------------------------------------------------------------- /btchip/src/main/java/com/btchip/utils/KeyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/btchip/src/main/java/com/btchip/utils/KeyUtils.java -------------------------------------------------------------------------------- /checkBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/checkBuild.sh -------------------------------------------------------------------------------- /collectApks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/collectApks.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/crowdin.yml -------------------------------------------------------------------------------- /debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/debug.keystore -------------------------------------------------------------------------------- /docs/images/accs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/docs/images/accs.png -------------------------------------------------------------------------------- /docs/multi-currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/docs/multi-currency.md -------------------------------------------------------------------------------- /ext_settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/ext_settings.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /integration-test.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/integration-test.gradle -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- 1 | External libraries that needed adaptation. -------------------------------------------------------------------------------- /libs/netcipher-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/libs/netcipher-2.2.1.jar -------------------------------------------------------------------------------- /libs/nordpol/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/libs/nordpol/LICENSE -------------------------------------------------------------------------------- /libs/nordpol/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/libs/nordpol/build.gradle -------------------------------------------------------------------------------- /libs/nordpol/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/libs/nordpol/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/nordpol/src/main/java/nordpol/IsoCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/libs/nordpol/src/main/java/nordpol/IsoCard.java -------------------------------------------------------------------------------- /lt-api/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | 3 | -------------------------------------------------------------------------------- /lt-api/README.md: -------------------------------------------------------------------------------- 1 | TODO: Document 2 | 3 | -------------------------------------------------------------------------------- /lt-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/build.gradle -------------------------------------------------------------------------------- /lt-api/src/main/java/com/mycelium/lt/ApiUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/src/main/java/com/mycelium/lt/ApiUtils.java -------------------------------------------------------------------------------- /lt-api/src/main/java/com/mycelium/lt/api/LtApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/src/main/java/com/mycelium/lt/api/LtApi.java -------------------------------------------------------------------------------- /lt-api/src/test/java/com/mycelium/lt/ManualTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/src/test/java/com/mycelium/lt/ManualTest.java -------------------------------------------------------------------------------- /lt-api/src/test/resources/exampleWithPostcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/src/test/resources/exampleWithPostcode.json -------------------------------------------------------------------------------- /lt-api/src/test/resources/ungargasse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/lt-api/src/test/resources/ungargasse.json -------------------------------------------------------------------------------- /mbw/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | dist 4 | -------------------------------------------------------------------------------- /mbw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/LICENSE -------------------------------------------------------------------------------- /mbw/README.md: -------------------------------------------------------------------------------- 1 | The "Mycelium Bitcoin Wallet". 2 | -------------------------------------------------------------------------------- /mbw/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/build.gradle -------------------------------------------------------------------------------- /mbw/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/google-services.json -------------------------------------------------------------------------------- /mbw/integrationHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/integrationHowTo.md -------------------------------------------------------------------------------- /mbw/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/lint-baseline.xml -------------------------------------------------------------------------------- /mbw/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/lint.xml -------------------------------------------------------------------------------- /mbw/res-sources/creditCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/creditCard.png -------------------------------------------------------------------------------- /mbw/res-sources/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/licenses.md -------------------------------------------------------------------------------- /mbw/res-sources/localTraderLocalOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/localTraderLocalOnly.png -------------------------------------------------------------------------------- /mbw/res-sources/localTraderLocalOnly.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/localTraderLocalOnly.xcf -------------------------------------------------------------------------------- /mbw/res-sources/mycelium_logo_transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/mycelium_logo_transp.png -------------------------------------------------------------------------------- /mbw/res-sources/updateDrawables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/res-sources/updateDrawables.sh -------------------------------------------------------------------------------- /mbw/src/btctestnet/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/btctestnet/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mbw/src/btctestnet/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/btctestnet/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mbw/src/btctestnet/res/layout/startup_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/btctestnet/res/layout/startup_activity.xml -------------------------------------------------------------------------------- /mbw/src/btctestnet/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/btctestnet/res/values/strings.xml -------------------------------------------------------------------------------- /mbw/src/huaweiProdnet/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/huaweiProdnet/res/values/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mbw/src/main/assets/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/countries.json -------------------------------------------------------------------------------- /mbw/src/main/assets/nodes-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/nodes-b.json -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/1inch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/1inch_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/aave_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/aave_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/abyss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/abyss_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ankr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ankr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ant_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ant_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/arn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/arn_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/atl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/atl_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/atls_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/atls_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/axs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/axs_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/bat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/bat_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/bix_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/bix_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/bnb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/bnb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/bnt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/bnt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/brd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/brd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/btc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/btc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/btm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/btm_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/busd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/busd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/cake_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/cake_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/cennz_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/cennz_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/chr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/chr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/chsb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/chsb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/chz_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/chz_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/cl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/cl_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/comp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/comp_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/cro_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/cro_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/crpt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/crpt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/crv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/crv_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/cvc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/cvc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/dai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/dai_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/data_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/data_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/dcn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/dcn_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/dent_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/dent_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/dgd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/dgd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/dydx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/dydx_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/elf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/elf_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/eng_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/eng_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/enj_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/enj_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/eth_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/eth_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ftm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ftm_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ftt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ftt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/fx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/fx_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/fxc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/fxc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/gala_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/gala_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/gno_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/gno_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/gnt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/gnt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/grt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/grt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/gusd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/gusd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/hedg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/hedg_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/hex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/hex_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/hot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/hot_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ht_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ht_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/husd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/husd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/hyn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/hyn_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/icx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/icx_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ilv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ilv_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/iost_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/iost_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/kcs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/kcs_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/knc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/knc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/la_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/la_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/lamb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/lamb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/lend_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/lend_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/leo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/leo_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/link_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/link_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/loom_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/loom_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/lrc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/lrc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mana_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mana_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mass_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mass_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/matic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/matic_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mco_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mco_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mkr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mkr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mtl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mtl_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/mydfs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/mydfs_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/nexo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/nexo_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/nmr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/nmr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ogn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ogn_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/okb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/okb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/omg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/omg_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/pax_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/pax_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/paxg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/paxg_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/poly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/poly_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/powr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/powr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/qnt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/qnt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/rcn_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/rcn_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ren_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ren_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/rep_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/rep_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/rlc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/rlc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/rndr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/rndr_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/rpl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/rpl_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/sai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/sai_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/sand_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/sand_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/shib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/shib_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/snt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/snt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/snx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/snx_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/storj_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/storj_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/sushi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/sushi_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/sxp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/sxp_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/theta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/theta_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/trb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/trb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/tusd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/tusd_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/uni_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/uni_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/uqc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/uqc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/usdc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/usdc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/usdt20_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/usdt20_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/usdt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/usdt_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/ven_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/ven_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/wbtc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/wbtc_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/xaut_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/xaut_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/xin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/xin_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/xyo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/xyo_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/yfi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/yfi_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/zb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/zb_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/token-logos/zrx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/token-logos/zrx_logo.png -------------------------------------------------------------------------------- /mbw/src/main/assets/trusted_packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/assets/trusted_packages.json -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/giftbox/GiftboxExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/com/mycelium/giftbox/GiftboxExt.kt -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/giftbox/cards/event/OrdersUpdate.kt: -------------------------------------------------------------------------------- 1 | package com.mycelium.giftbox.cards.event 2 | 3 | 4 | class OrdersUpdate -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/wallet/PinDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/com/mycelium/wallet/PinDialog.kt -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/wallet/Record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/com/mycelium/wallet/Record.java -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/wallet/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/com/mycelium/wallet/Utils.java -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/wallet/activity/send/InstantWalletActivity.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mbw/src/main/java/com/mycelium/wallet/ext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/com/mycelium/wallet/ext.kt -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/Array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/Array.java -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/Base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/Base.java -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/Body.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/Body.java -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/List.java -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/Page.java -------------------------------------------------------------------------------- /mbw/src/main/java/crl/android/pdfwriter/Pages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/java/crl/android/pdfwriter/Pages.java -------------------------------------------------------------------------------- /mbw/src/main/res/anim/anim_news_pulse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/anim_news_pulse.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/news_pulse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/news_pulse.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/slide_left_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/slide_left_in.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/slide_left_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/slide_left_out.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/slide_right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/slide_right_in.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/slide_right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/slide_right_out.xml -------------------------------------------------------------------------------- /mbw/src/main/res/anim/slow_pulse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/anim/slow_pulse.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/bequant_radio_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/bequant_radio_button.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/btn_text_color_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/btn_text_color_selector.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/button_blue_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/button_blue_text_color.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/button_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/button_text_color.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/giftbox_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/giftbox_tag.xml -------------------------------------------------------------------------------- /mbw/src/main/res/color/news_tab_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/color/news_tab_text_color.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/connect_keepkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/connect_keepkey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/connect_ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/connect_ledger.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/connect_trezor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/connect_trezor.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/credit_card_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/credit_card_buy.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/keepkey_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/keepkey_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/ledger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/ledger_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/multikeys_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/multikeys_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_0.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_1.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_2.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_3.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_4.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_5.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_6.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/pie_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/pie_send.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/send.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/singlekey_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/singlekey_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/tor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/tor.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/tor_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/tor_gray.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-hdpi/triangle_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-hdpi/triangle_se.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-ldpi/cover_centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-ldpi/cover_centered.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-ldpi/multikeys_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-ldpi/multikeys_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-mdpi/cover_centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-mdpi/cover_centered.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-mdpi/credit_card_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-mdpi/credit_card_buy.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-mdpi/multikeys_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-mdpi/multikeys_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-mdpi/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-mdpi/send.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-xhdpi/multikeys_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-xhdpi/multikeys_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-xhdpi/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-xhdpi/send.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-xhdpi/singlekey_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-xhdpi/singlekey_grey.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable-xxhdpi/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable-xxhdpi/send.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/action_bar_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/action_bar_logo.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/action_bar_logo_vip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/action_bar_logo_vip.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/background_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/background_backup.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/background_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/background_main.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/background_news_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/background_news_icon.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/background_news_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/background_news_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_divider.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_input_cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_input_cursor.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_intro1_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_intro1_img.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_intro2_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_intro2_img.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_intro3_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_intro3_img.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_intro4_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_intro4_img.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequant_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequant_logo.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bequantprogress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bequantprogress.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_bequant_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_bequant_button.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_bequant_gray_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_bequant_gray_btn.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_bequant_loader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_bequant_loader.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_bequant_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_bequant_search.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_bequant_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_bequant_text.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_black_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_black_circle.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_btn_fio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_btn_fio.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_changelly_chain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_changelly_chain.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_changelly_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_changelly_error.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_close.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_coin_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_coin_account.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_coin_value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_coin_value.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_fio_new_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_fio_new_bubble.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_fio_rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_fio_rectangle.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_gift_box_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_gift_box_tag.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_input_text_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_input_text_filled.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_keyboard_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_keyboard_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_rmc_profit_meter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_rmc_profit_meter.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_send_coin_batch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_send_coin_batch.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_shamir_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_shamir_input.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_shamir_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_shamir_share.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/bg_vip_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/bg_vip_icon.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/border_highlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/border_highlight.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_black.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_blue.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_blue_light_slim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_blue_light_slim.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_blue_slim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_blue_slim.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_gray.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_gray_slim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_gray_slim.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_red.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/btn_transparent_slim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/btn_transparent_slim.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/camera_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/camera_close.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/camera_flash_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/camera_flash_off.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/camera_flash_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/camera_flash_on.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/camera_focus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/camera_focus.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/camera_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/camera_switch.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/checkbox_fio_mapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/checkbox_fio_mapping.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_dash_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_dash_gray.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_dash_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_dash_green.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_full_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_full_blue.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_full_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_full_green.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_full_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_full_white.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_line_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_line_green.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/circle_line_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/circle_line_white.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/create_fio_name_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/create_fio_name_bg.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/dialog_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/dialog_background.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/divider_account_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/divider_account_list.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/divider_bequant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/divider_bequant.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/divider_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/divider_horizontal.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/giftcard_card_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/giftcard_card_bg.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_add_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_add_24px.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_address.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_arrow_drop_down.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_back_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_back_to_top.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_backspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_backspace.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_baseline_edit_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_baseline_edit_24.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bequant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bequant.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bequant_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bequant_arrow_up.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bequant_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bequant_clear.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bequant_clear_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bequant_clear_24.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bequant_exchange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bequant_exchange.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bitcoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bitcoin.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bitcoin_tx_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bitcoin_tx_change.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_bitcoin_vault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_bitcoin_vault.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_btc_exchange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_btc_exchange.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_camera_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_camera_alt.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_chevron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_chevron.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_chevron_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_chevron_down.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_chevron_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_chevron_up.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_clipboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_clipboard.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_clipboard_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_clipboard_outline.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_cloud_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_cloud_upload.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_complete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_complete.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_contacts.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_currencycom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_currencycom.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_dash.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_date_of_birth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_date_of_birth.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_deposit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_deposit.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_earth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_earth.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_edit_fio_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_edit_fio_name.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_education.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_education.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_erc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_erc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_ethereum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_ethereum.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_exchange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_exchange.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_exchange_coin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_exchange_coin.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_failed.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_favorite.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_favorite_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_favorite_small.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fingerprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fingerprint.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_domain.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_error.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_info.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_logo_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_logo_gray.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_name_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_name_error.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_name_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_name_ok.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_paid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_paid.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_fio_right_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_fio_right_arrow.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_giftbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_giftbox.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_glyph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_glyph.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_info_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_info_icon.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_investment_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_investment_wallet.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_language_24_px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_language_24_px.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_list.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_micro_otc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_micro_otc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_mining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_mining.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_minus.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_minus_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_minus_disabled.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_minus_states.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_minus_states.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_more_horiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_more_horiz.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_more_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_more_vert.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_nfc_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_nfc_logo.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_not_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_not_favorite.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_notification_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_notification_icon.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_pen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_pen.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_plus.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_plus_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_plus_disabled.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_plus_nofill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_plus_nofill.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_plus_states.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_plus_states.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_pref_fiat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_pref_fiat.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_preselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_preselected.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_print.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_print.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_progress.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_qrcode_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_qrcode_scan.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_request_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_request_arrow_up.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_request_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_request_error.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_request_item_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_request_item_logo.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_request_pending.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_request_pending.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_scan.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_security.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_settings_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_settings_backup.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_share_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_share_24px.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_tor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_tor.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_trading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_trading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_trending_up_24_px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_trending_up_24_px.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_two_factor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_two_factor.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_vip_discount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_vip_discount.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_vip_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_vip_icon.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_vip_limits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_vip_limits.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_vip_menu_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_vip_menu_text.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/item_action_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/item_action_bg.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/item_fio_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/item_fio_selector.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/item_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/item_selector.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/keyboard_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/keyboard_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/line_dash_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/line_dash_gray.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/line_dash_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/line_dash_green.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/logo_sepa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/logo_sepa.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/mass_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/mass_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/mt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/mt_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/mt_icon_no_priv_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/mt_icon_no_priv_key.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/news_date_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/news_date_bg.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/news_keep_it_so_far.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/news_keep_it_so_far.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/news_tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/news_tab_indicator.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/pager_indicator_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/pager_indicator_dot.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/photo.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/progress_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/progress_bar.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/purse_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/purse_small.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/qr_code.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/rmc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/rmc_icon.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/rmc_icon_no_priv_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/rmc_icon_no_priv_key.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/round_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/round_background.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/safervpn_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/safervpn_icon_small.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/simplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/simplex.png -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/switch_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/switch_thumb.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/switch_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/switch_track.xml -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/trezor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/trezor2.jpg -------------------------------------------------------------------------------- /mbw/src/main/res/drawable/underline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/drawable/underline.xml -------------------------------------------------------------------------------- /mbw/src/main/res/font/exo2medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/font/exo2medium.ttf -------------------------------------------------------------------------------- /mbw/src/main/res/font/exo2regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/font/exo2regular.ttf -------------------------------------------------------------------------------- /mbw/src/main/res/font/roboto_mono_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/font/roboto_mono_medium.ttf -------------------------------------------------------------------------------- /mbw/src/main/res/font/roboto_mono_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/font/roboto_mono_regular.ttf -------------------------------------------------------------------------------- /mbw/src/main/res/layout/about_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/about_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/accounts_title_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/accounts_title_view.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_backup_words.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_backup_words.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_bequant_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_bequant_intro.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_bequant_kyc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_bequant_kyc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_bequant_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_bequant_sign.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_bip_ss_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_bip_ss_import.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_exchange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_exchange.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_gift_box_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_gift_box_root.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_news.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_news_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_news_image.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_two_factor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_two_factor.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/activity_verify_words.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/activity_verify_words.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/add_account_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/add_account_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_book.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment_addr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment_addr.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment_btc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment_btc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment_label.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment_path.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/address_fragment_qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/address_fragment_qr.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/buy_sell_service_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/buy_sell_service_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/changelly_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/changelly_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/checked_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/checked_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/country_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/country_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/create_key_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/create_key_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/custom_barcode_scanner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/custom_barcode_scanner.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/delkey_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/delkey_checkbox.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/details_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/details_common.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/dialog_add_erc20_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/dialog_add_erc20_token.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/dialog_bequant_modal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/dialog_bequant_modal.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/dialog_ledger_aid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/dialog_ledger_aid.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/dialog_news_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/dialog_news_image.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/dialog_rmc_reminder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/dialog_rmc_reminder.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_clear_pin_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_clear_pin_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_new_pin_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_new_pin_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_pin_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_pin_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_pin_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_pin_display.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_pin_keypad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_pin_keypad.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_pin_numpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_pin_numpad.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_pin_numpadhex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_pin_numpadhex.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/enter_text_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/enter_text_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/export_as_qr_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/export_as_qr_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/export_to_pdf_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/export_to_pdf_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fio_address_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fio_address_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fio_memo_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fio_memo_input.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fio_recieve_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fio_recieve_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fio_request_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fio_request_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fio_send_request_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fio_send_request_info.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_accounts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_accounts.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_bequant_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_bequant_main.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_bequant_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_bequant_sign.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_change_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_change_log.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_country_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_country_fail.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_exchage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_exchage.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_fio_domains.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_fio_domains.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_gift_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_gift_box.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_giftbox_buy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_giftbox_buy.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_help.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_margin_trade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_margin_trade.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_news.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/fragment_vip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/fragment_vip.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/get_amount_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/get_amount_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/giftbox_banner_create.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/giftbox_banner_create.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/giftcard_send_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/giftcard_send_info.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/hd_signing_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/hd_signing_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_action_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_action_button.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_all_news_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_all_news_search.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_account.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_coin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_coin.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_market.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_market.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_search.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_space.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_bequant_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_bequant_step.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_country.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_country.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_dialog_simplex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_dialog_simplex.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_fio_address_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_fio_address_type.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_fio_group_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_fio_group_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_fio_list_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_fio_list_divider.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_fio_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_fio_name.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_fio_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_fio_register.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_gift_box_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_gift_box_tag.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_giftbox_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_giftbox_error.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_giftbox_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_giftbox_loading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_giftbox_purchaced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_giftbox_purchaced.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_giftbox_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_giftbox_store.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_list_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_list_space.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_mediaflow_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_mediaflow_banner.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_mediaflow_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_mediaflow_loading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_mediaflow_news_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_mediaflow_news_v2.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_quad_ads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_quad_ads.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_send_coins_batch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_send_coins_batch.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_share.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_space.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/item_unspent_output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/item_unspent_output.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_account_actoins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_account_actoins.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_bequant_amount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_bequant_amount.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_bequant_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_bequant_loading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_dialog_view_msg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_dialog_view_msg.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_exchange_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_exchange_tab.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_fio_dropdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_fio_dropdown.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_gap_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_gap_input.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_giftbox_amount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_giftbox_amount.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_loading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_password.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_top_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_top_banner.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/layout_value_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/layout_value_keyboard.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_ad_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_ad_card.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_ad_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_ad_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_ad_search_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_ad_search_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_ads_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_ads_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_chat_entry_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_chat_entry_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_location_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_location_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_my_info_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_my_info_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_trade_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_trade_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/lt_trader_info_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/lt_trader_info_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/main_balance_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/main_balance_view.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/main_buy_sell_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/main_buy_sell_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/main_notice_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/main_notice_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/main_si_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/main_si_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/manual_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/manual_entry.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/media_flow_tab_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/media_flow_tab_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/menu_bequant_try_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/menu_bequant_try_demo.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/message_signing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/message_signing.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/modern_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/modern_main.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/number_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/number_entry.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/passphrase_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/passphrase_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/pop_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/pop_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/popup_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/popup_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/pref_divider_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/pref_divider_list.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/preference_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/preference_arrow.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/preference_on_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/preference_on_off.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/receive_coins_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/receive_coins_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/record_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/record_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/record_row_investment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/record_row_investment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/record_row_total.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/record_row_total.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/recyclerview_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/recyclerview_address.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/rmc_address_statistic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/rmc_address_statistic.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/rmc_address_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/rmc_address_view.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_amount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_amount.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_fee_block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_fee_block.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_fee_heap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_fee_heap.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_fee_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_fee_title.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_heading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_heading.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_heading_btc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_heading_btc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_progress.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_recipient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_recipient.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_sender_fio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_sender_fio.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/send_coins_tx_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/send_coins_tx_label.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/show_logs_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/show_logs_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/simple_message_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/simple_message_dialog.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/simplex_main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/simplex_main_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/startup_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/startup_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/stepper_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/stepper_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/token_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/token_item.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/transaction_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/transaction_row.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/two_button_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/two_button_preference.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/update_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/update_notification.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/us_keyboard_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/us_keyboard_fragment.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/verify_backup_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/verify_backup_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/wait_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/wait_activity.xml -------------------------------------------------------------------------------- /mbw/src/main/res/layout/wordlist_checkboxes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/layout/wordlist_checkboxes.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/addressbook_context_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/addressbook_context_menu.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/exchange_changelly2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/exchange_changelly2.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/export_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/export_history.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/giftbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/giftbox.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/giftbox_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/giftbox_details.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/giftbox_purchased_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/giftbox_purchased_list.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/giftbox_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/giftbox_store.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/lt_activity_options_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/lt_activity_options_menu.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/lt_ads_context_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/lt_ads_context_menu.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/lt_ads_options_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/lt_ads_options_global.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_bequant_kyc_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_bequant_kyc_step.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_bequant_market.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_bequant_market.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_bequant_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_bequant_sign.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_fio_map_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_fio_map_account.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_local_currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_local_currency.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_settings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/menu_share.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/news.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/record_fio_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/record_fio_options.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/record_options_boost_gap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/record_options_boost_gap.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/record_options_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/record_options_menu.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/record_options_menu_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/record_options_menu_sign.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/refresh.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/shamir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/shamir.xml -------------------------------------------------------------------------------- /mbw/src/main/res/menu/verify_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/menu/verify_message.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/bequant_kyc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/bequant_kyc.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/bequant_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/bequant_main.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/bequant_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/bequant_sign.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/bequant_two_factor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/bequant_two_factor.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/changelly2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/changelly2.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/fio_map_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/fio_map_account.xml -------------------------------------------------------------------------------- /mbw/src/main/res/navigation/giftbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/navigation/giftbox.xml -------------------------------------------------------------------------------- /mbw/src/main/res/raw/license_mycelium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/license_mycelium.txt -------------------------------------------------------------------------------- /mbw/src/main/res/raw/license_pdfwriter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/license_pdfwriter.txt -------------------------------------------------------------------------------- /mbw/src/main/res/raw/license_zxing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/license_zxing.txt -------------------------------------------------------------------------------- /mbw/src/main/res/raw/mycelium_vip_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/mycelium_vip_logo.json -------------------------------------------------------------------------------- /mbw/src/main/res/raw/special_thanks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/special_thanks.txt -------------------------------------------------------------------------------- /mbw/src/main/res/raw/tou_mycelium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/raw/tou_mycelium.txt -------------------------------------------------------------------------------- /mbw/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-de/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-de/plurals.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-es/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-es/plurals.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-fil/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-pt/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-pt/plurals.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-ru/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-ru/plurals.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sw240dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sw240dp/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sw320dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sw320dp/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sw400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sw400dp/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/strings_nolocale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/strings_nolocale.xml -------------------------------------------------------------------------------- /mbw/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/changelog_master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/changelog_master.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/my_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/my_paths.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/preferences_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/preferences_notifications.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/preferences_pincode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/preferences_pincode.xml -------------------------------------------------------------------------------- /mbw/src/main/res/xml/preferences_versions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/main/res/xml/preferences_versions.xml -------------------------------------------------------------------------------- /mbw/src/main/sqldelight/com/mycelium/generated/giftbox/database/2.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE GiftboxProduct ADD COLUMN featuredRank INTEGER NOT NULL DEFAULT 0; -------------------------------------------------------------------------------- /mbw/src/main/sqldelight/com/mycelium/generated/giftbox/database/3.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE GiftboxCard ADD COLUMN activateBy TEXT AS Date; -------------------------------------------------------------------------------- /mbw/src/prodnet/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/prodnet/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mbw/src/prodnet/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/prodnet/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mbw/src/prodnet/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/prodnet/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mbw/src/prodnet/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/src/prodnet/res/values/strings.xml -------------------------------------------------------------------------------- /mbw/updateTranslations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbw/updateTranslations.sh -------------------------------------------------------------------------------- /mbwlib/README.md: -------------------------------------------------------------------------------- 1 | TODO: Document 2 | 3 | -------------------------------------------------------------------------------- /mbwlib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbwlib/build.gradle -------------------------------------------------------------------------------- /mbwlib/src/main/java/nl/garvelink/iban/IBAN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbwlib/src/main/java/nl/garvelink/iban/IBAN.java -------------------------------------------------------------------------------- /mbwlib/src/test/resources/cacerts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/mbwlib/src/test/resources/cacerts -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/settings.gradle -------------------------------------------------------------------------------- /testhelper/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /testhelper/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/testhelper/build.gradle -------------------------------------------------------------------------------- /testhelper/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/testhelper/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/tools.gradle -------------------------------------------------------------------------------- /trezor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/.gitignore -------------------------------------------------------------------------------- /trezor/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/AndroidManifest.xml -------------------------------------------------------------------------------- /trezor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/LICENSE -------------------------------------------------------------------------------- /trezor/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/README.rst -------------------------------------------------------------------------------- /trezor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/build.gradle -------------------------------------------------------------------------------- /trezor/build_pb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/build_pb.sh -------------------------------------------------------------------------------- /trezor/libs/protobuf-java-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/libs/protobuf-java-2.5.0.jar -------------------------------------------------------------------------------- /trezor/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/lint.xml -------------------------------------------------------------------------------- /trezor/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/trezor/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /view/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/README.md -------------------------------------------------------------------------------- /view/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/build.gradle -------------------------------------------------------------------------------- /view/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /view/src/main/res/color/btn_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/color/btn_text_color.xml -------------------------------------------------------------------------------- /view/src/main/res/color/btn_text_color_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/color/btn_text_color_white.xml -------------------------------------------------------------------------------- /view/src/main/res/color/preference_title_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/color/preference_title_color.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/arrow_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/arrow_bottom.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/background_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/background_window.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/ic_back_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/ic_back_arrow.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/input_cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/input_cursor.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/pref_list_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/pref_list_divider.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/preference_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/preference_switch.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/switch_thumb_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/switch_thumb_off.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/switch_thumb_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/switch_thumb_on.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/switch_track_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/switch_track_off.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/switch_track_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/switch_track_on.xml -------------------------------------------------------------------------------- /view/src/main/res/drawable/text_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/drawable/text_handle.xml -------------------------------------------------------------------------------- /view/src/main/res/layout/dialog_pref_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/layout/dialog_pref_list.xml -------------------------------------------------------------------------------- /view/src/main/res/layout/preference_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/layout/preference_button.xml -------------------------------------------------------------------------------- /view/src/main/res/layout/preference_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/layout/preference_layout.xml -------------------------------------------------------------------------------- /view/src/main/res/layout/preference_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/layout/preference_switch.xml -------------------------------------------------------------------------------- /view/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /view/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /view/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /view/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /view/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/view/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /wallet-console/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wallet-console/build.gradle -------------------------------------------------------------------------------- /wallet-console/integration-test.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wallet-console/integration-test.gradle -------------------------------------------------------------------------------- /walletcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/walletcore/README.md -------------------------------------------------------------------------------- /walletcore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/walletcore/build.gradle -------------------------------------------------------------------------------- /walletcore/integration-test.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/walletcore/integration-test.gradle -------------------------------------------------------------------------------- /walletcore/src/main/java/com/mycelium/wapi/wallet/CurrencySettings.kt: -------------------------------------------------------------------------------- 1 | package com.mycelium.wapi.wallet 2 | 3 | interface CurrencySettings -------------------------------------------------------------------------------- /walletcore/src/main/sqldelight/com/mycelium/generated/wallet/database/10.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE FeeEstimation ADD COLUMN scale INTEGER NOT NULL DEFAULT 1; -------------------------------------------------------------------------------- /walletcore/src/main/sqldelight/com/mycelium/generated/wallet/database/12.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE EthAccountBacking ADD COLUMN gasPrice TEXT; -------------------------------------------------------------------------------- /walletcore/src/main/sqldelight/com/mycelium/generated/wallet/database/4.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE EthAccountBacking ADD COLUMN success INTEGER NOT NULL DEFAULT 1; -------------------------------------------------------------------------------- /walletcore/src/main/sqldelight/com/mycelium/generated/wallet/database/5.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE EthAccountBacking ADD COLUMN internalValue TEXT; -------------------------------------------------------------------------------- /walletcore/src/main/sqldelight/com/mycelium/generated/wallet/database/8.sqm: -------------------------------------------------------------------------------- 1 | ALTER TABLE FioContext ADD COLUMN accountType INTEGER NOT NULL DEFAULT 0; -------------------------------------------------------------------------------- /walletmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/walletmodel/README.md -------------------------------------------------------------------------------- /walletmodel/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/walletmodel/build.gradle -------------------------------------------------------------------------------- /wapi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/.classpath -------------------------------------------------------------------------------- /wapi/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | 3 | -------------------------------------------------------------------------------- /wapi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/.project -------------------------------------------------------------------------------- /wapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/LICENSE -------------------------------------------------------------------------------- /wapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/README.md -------------------------------------------------------------------------------- /wapi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/build.gradle -------------------------------------------------------------------------------- /wapi/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/lint.xml -------------------------------------------------------------------------------- /wapi/src/main/java/com/mycelium/wapi/api/Wapi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycelium-com/wallet-android/HEAD/wapi/src/main/java/com/mycelium/wapi/api/Wapi.kt --------------------------------------------------------------------------------