wingify / vwo-android

VWO Android SDK
https://developers.vwo.com/reference#android-introduction
MIT License
9 stars 6 forks source link

Please move to a proper maven repository for distribution #12

Closed tdekoning closed 6 years ago

tdekoning commented 6 years ago

Github is not a distribution network for maven/gradle dependencies. Downloading the VWO android sdk is taking up most of our build time, while all other libraries are blazing fast (because they are hosted on a proper maven repository).

Also, because of the hosting on github, gradle decides to download the VWO library every time.

matthew-niemann commented 6 years ago

Having the same issue. We have to use Gradle’s “Work offline” option in Android Studio to be able to make any meaningful progress in our development. Please fix!

aman400 commented 6 years ago

VWO Android SDK is now available via maven central.

allprojects {
        repositories {
            ...
            mavenCentral()
            ...
        }
    }
dependencies {
    ...
    implementation 'com.vwo:mobile:2.4.2@aar'
    ...
}