remove android-lib submodule and use jitpack and gradle dependencies instead

This commit is contained in:
Andy Scherzinger 2016-06-07 14:02:36 +02:00
parent 4f7e2b4c87
commit 250c917fde
2 changed files with 4 additions and 6 deletions

4
.gitmodules vendored
View file

@ -2,7 +2,3 @@
path = user_manual/ocdoc
url = https://github.com/owncloud/documentation
branch = master
[submodule "nextcloud-android-library"]
path = nextcloud-android-library
url = https://github.com/nextcloud/android-library.git
branch = master

View file

@ -22,7 +22,8 @@ ext {
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
flatDir {
dirs 'libs'
}
@ -31,7 +32,8 @@ repositories {
dependencies {
/// dependencies for app building
compile name: 'touch-image-view'
compile project(':nextcloud-android-library')
compile 'com.github.owncloud:android-library:-SNAPSHOT'
compile "com.android.support:support-v4:${supportLibraryVersion}"
compile "com.android.support:design:${supportLibraryVersion}"
compile 'com.jakewharton:disklrucache:2.0.2'