Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 1.06 KB

README.md

File metadata and controls

54 lines (45 loc) · 1.06 KB

android-storage

Build Status GitHub tag API

snapshot

ext {
    latestVersion = '1.0.1-SNAPSHOT'
}

allprojects {
    repositories {
        ...
        maven {
            url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
        }
        ...
    }
}

release

ext {
    latestVersion = '1.0.1'
}

allprojects {
    repositories {
        ...
        jcenter()
        ...
    }
}

usage

android

...
dependencies {
    ...
    // implementation "io.github.v7lin:storage-kind-android:${latestVersion}"
    // implementation "io.github.v7lin:storage-trouble-android:${latestVersion}"
    implementation "io.github.v7lin:storage-trouble-android:${latestVersion}"
    ...
}
...