ranaparamveer / android-sqlite-asset-helper

An Android helper class to manage database creation and version management using an application's raw asset files
Apache License 2.0
25 stars 3 forks source link

Gradle can not complete build #1

Closed ionutandone closed 6 years ago

ionutandone commented 6 years ago

Whenever I try to build the project, I get the following error:

Failed to resolve: com.github.ranaparamveer:android-sqlite-asset-helper:v2.0.4

ranaparamveer commented 6 years ago

Please add : maven { url 'https://jitpack.io' } to project level gradle file under allprojects as:


allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}