edipert / android-textile

Android bindings for https://github.com/textileio/go-textile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-textile

Made by Textile Chat on Slack GitHub license CircleCI branch standard-readme compliant Platform Bintray

Textile provides encrypted, recoverable, schema-based, and cross-application data storage built on IPFS and libp2p. We like to think of it as a decentralized data wallet with built-in protocols for sharing and recovery, or more simply, an open and programmable iCloud.

Table of Contents

Install

The Textile Android library is published in Textile's Bintray Maven repository. You can install it using Gradle.

First, you'll need to add Textile's Bintray Maven repository to you project's top level build.gradle in the allProjects.repositories section:

allprojects {
    repositories {
        ...
        maven { url 'https://dl.bintray.com/textile/maven' }
        maven { url 'https://jitpack.io' }
        ...
    }
}

Next, add the Textile dependency to your app module's build.gradle dependencies section, specifying the latest version available:

dependencies {
    ...
    implementation 'io.textile:textile:1.1.0'
    ...
}

Usage

To learn about Textile usage, please head over to the Textile documentation and be sure to read the Android getting started guide.

This repo contains an example project. To run it, clone the repo, build and run the example app module.

Maintainers

@asutula @sanderpick

Contributing

PRs accepted.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © 2019 Textile

About

Android bindings for https://github.com/textileio/go-textile

License:MIT License


Languages

Language:Java 100.0%