mirror of
https://github.com/syncthing/syncthing-android.git
synced 2025-01-24 02:45:55 +00:00
Get support-v4-preferencefragment via maven dependency instead of submodule.
This commit is contained in:
parent
ccff3e1718
commit
a8b9950101
3 changed files with 7 additions and 5 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
||||||
[submodule "ext/syncthing/src/github.com/syncthing/syncthing"]
|
[submodule "ext/syncthing/src/github.com/syncthing/syncthing"]
|
||||||
path = ext/syncthing/src/github.com/syncthing/syncthing
|
path = ext/syncthing/src/github.com/syncthing/syncthing
|
||||||
url = https://github.com/syncthing/syncthing.git
|
url = https://github.com/syncthing/syncthing.git
|
||||||
[submodule "libraries/android-support-v4-preferencefragment"]
|
|
||||||
path = libraries/android-support-v4-preferencefragment
|
|
||||||
url = https://github.com/kolavar/android-support-v4-preferencefragment.git
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -20,12 +21,17 @@ apply plugin: 'com.github.ben-manes.versions'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url {
|
||||||
|
'https://raw.github.com/kolavar/android-support-v4-preferencefragment/master/maven-repository/'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.android.support:appcompat-v7:19.1.0'
|
compile 'com.android.support:appcompat-v7:19.1.0'
|
||||||
|
compile 'com.android.support:support-v4-preferencefragment:1.0.0@aar'
|
||||||
androidTestCompile 'com.squareup.okhttp:mockwebserver:2.0.0'
|
androidTestCompile 'com.squareup.okhttp:mockwebserver:2.0.0'
|
||||||
compile project(':android-support-v4-preferencefragment')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
preBuild {
|
preBuild {
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 214d7a7f11642f48a9e7e6dbfc2993f0075b389d
|
|
Loading…
Reference in a new issue