This branch of the Radix Android Wallet release/1.0.0-beta
is the start of what is to come from our future public BETANET release.
This wallet is a modification of the original wallet made especially to work with the BETANET allowing for different types of tokens to be sent and received as well as for easily creating new wallets with ease for either testing or development purposes.
The Radix DLT Android Wallet is making full use of the latest release of the radixdlt-java under the release/1.0.0-beta branch.
Please be aware that there will be a v2 of the Radix wallet which will have a completely new design and features.
For this reason, consider this branch to be used exclusively for testing and development purposes.
Use Android Studio 3.4.1 (or newer) to be able to build the app.
Bootstrap to your desired network by modifying the bootstrapConfig variable in the RadixWalletApplication.kt file.
The bootstrap variable will look like private val bootstrapConfig = BootStrapConfigAndroidImpl.macAndroidEmulator(this)
where you can choose 3 options using the BootStrapConfigAndroidImpl.class.
The 3 options are:
-
BootStrapConfigAndroidImpl.radixBetanetNode(this)
(Used when connecting to the hosted radix betanet node) -
BootStrapConfigAndroidImpl.macAndroidEmulator(this)
(Used when connecting to a running localnode on your mac and also running the android emulator) -
BootStrapConfigAndroidImpl.localHost(this)
(Can take a String argument)- By default it will try to connect to "localhost" which will connect to your android emulator running on your Windows PC. This function can also take an argument as a String and can be an IP address or URL.
e.g.
BootStrapConfigAndroidImpl.localHost(this, "192.168.0.2")
("192.168.0.2"
is the IP address given by the router to your computer to connect your physical android phone via LAN)
or
BootStrapConfigAndroidImpl.localHost(this, "5.71.214.26")
("5.71.214.26"
is the IP address given by your ISP and you can connect to it as long as port 8080 has been forwarded on your router)
- Mostly written in Kotlin
- Uses Architecture Components: Room, LiveData and Lifecycle-components
- Uses dagger-android for dependency injection
- Uses RxJava 2 (Included by default by the radixdlt libs)
This project uses ktlint via Gradle dependency.
To check code style - gradle ktlint
(it's also bound to gradle check
).
Contributions are welcome, we simply ask to:
- Fork the codebase
- Make changes
- Submit a pull request for review
When contributing to this repository, we recommend discussing with the development team the change you wish to make using a GitHub issue before making changes.
Please follow our Code of Conduct in all your interactions with the project.
Link | Description |
---|---|
radixdlt.com | Radix DLT Homepage |
documentation | Radix Knowledge Base |
forum | Radix Technical Forum |
@radixdlt | Follow Radix DLT on Twitter |
If you need any information, please visit our GitHub Issues or the Radix DLT android wallet #general channel. Feel free to file an issue with as much information as possible about the problem.
Radix DLT Android Wallet is released under the MIT License.