All Projects β†’ gnosis β†’ safe-android

gnosis / safe-android

Licence: GPL-3.0 license
πŸ” App to manage and interact with the Gnosis Safe

Programming Languages

kotlin
9241 projects
shell
77523 projects

Projects that are alternatives of or similar to safe-android

safe-transaction-service
Keeps track of transactions sent via Gnosis Safe contacts and confirmed transactions. It also keeps track of Ether and ERC20 token transfers to Safe contracts.
Stars: ✭ 72 (+20%)
Mutual labels:  multisig
gnosis-py
Gnosis-py includes a set of libraries to work with Ethereum and Gnosis projects
Stars: ✭ 68 (+13.33%)
Mutual labels:  multisig
bitcoincashjs
WARNING: This project is no longer maintained. Please, use bitcore-lib-cash instead.
Stars: ✭ 80 (+33.33%)
Mutual labels:  multisig
cosign
Cooperative RSA signing
Stars: ✭ 25 (-58.33%)
Mutual labels:  multisig
Learning Bitcoin From The Command Line
A complete course for learning Bitcoin programming and usage from the command
Stars: ✭ 2,010 (+3250%)
Mutual labels:  multisig
crowdsale-smart-contract
No description or website provided.
Stars: ✭ 39 (-35%)
Mutual labels:  multisig
nthkey-ios
Your iOs device in a Bitcoin multi-sig
Stars: ✭ 15 (-75%)
Mutual labels:  multisig

Gnosis Safe Android App

codecov

Goal

The Gnosis Safe aims to provide all users with a convenient, yet secure way to manage their funds and interact with decentralized applications on Ethereum. Transactions are secured by on-chain multi-factor-authentication. This is achieved by using the Gnosis Safe smart contracts. They are the successor of the broadly trusted Gnosis Multisig Wallet smart contracts).

Setup

Infura

The Json RPC depends on Infura. You need to get an API key and create a file named project_keys with the following contents:

INFURA_API_KEY=<YOUR_PROJECT_ID>

Replace <YOUR_PROJECT_ID> with the project id that you get from Infura. You can find this project id at Projects -> Settings -> Keys -> PROJECT ID on the Infura Website.

Firebase

The Gnosis Safe Android App uses Firebase and your build will fail if you don't have the google-services.json file. To get this file, you need to create a Firebase project at https://console.firebase.google.com/ and add at least one Android application. If you didn't change the applicationId in app/build.gradle you need to create an app with the package name io.gnosis.safe.debug to be able to build a debug app. You can find the latest google-services.json file in the Project Settings -> General

After downloading the file, copy it to the app module folder.

Contribute

You can contribute to this repo by creating a Pull Request or an issue. Please follow the default template set for the Pull Requests.

Code Style

Make sure that you apply the Kotlin coding conventions and use the style schema in this repo with Android Studio.

Also always add newlines at the end of files. This can be enforced by Android Studio. For this enable Editor -> General -> Ensure line feed … (Under the β€œOthers” section).

CI Setup

Travis is used for continuous integration. It requires the google-services.json and debug-upload.jks. These need to be encrypted into a single file using the travis cli.

tar cvf secrets.tar gnosis-upload.jks app/google-services.json app/src/rinkeby/google-services.json app/src/release/google-services.json
travis encrypt-file secrets.tar

Release Process

See our Release steps on how to prepare a release.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].