mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 06:35:48 +03:00
remove android-lib submodule and use jitpack and gradle dependencies instead
This commit is contained in:
parent
4f7e2b4c87
commit
250c917fde
2 changed files with 4 additions and 6 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue