Remove external git submodule 'appcompat', closes #22

This commit is contained in:
Emux
2016-06-18 16:44:46 +03:00
parent 7e891c452a
commit 34c0cee0ca
6 changed files with 3 additions and 12 deletions

4
.gitmodules vendored
View File

@@ -5,7 +5,3 @@
[submodule "libtess2"] [submodule "libtess2"]
path = jni/jni/libtess2 path = jni/jni/libtess2
url = https://github.com/memononen/libtess2.git url = https://github.com/memononen/libtess2.git
[submodule "appcompat"]
path = appcompat
url = https://github.com/hjanetzek/android-support-v7-appcompat.git

View File

@@ -1,7 +1,3 @@
if (!(new File("$rootDir/appcompat/build.gradle").exists())) {
throw new GradleException('Missing git sub modules!\nPLEASE RUN: "git submodule init && git submodule update"')
}
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()

View File

@@ -1,5 +1,4 @@
rootProject.name = 'vtm-parent' rootProject.name = 'vtm-parent'
include ':appcompat'
include ':vtm' include ':vtm'
include ':vtm-tests' include ':vtm-tests'
include ':vtm-extras' include ':vtm-extras'

View File

@@ -14,7 +14,7 @@ dependencies {
compile 'com.android.support:support-v4:22.+' compile 'com.android.support:support-v4:22.+'
compile 'com.android.support:appcompat-v7:22.+' compile 'com.android.support:appcompat-v7:22.+'
eclipseCompile project(':appcompat') //eclipseCompile project(':appcompat')
compile 'com.noveogroup.android:android-logger:1.3.4' compile 'com.noveogroup.android:android-logger:1.3.4'
} }

View File

@@ -12,7 +12,7 @@ dependencies {
compile 'com.android.support:support-v4:22.+' compile 'com.android.support:support-v4:22.+'
compile 'com.android.support:appcompat-v7:22.+' compile 'com.android.support:appcompat-v7:22.+'
eclipseCompile project(':appcompat') //eclipseCompile project(':appcompat')
compile 'com.noveogroup.android:android-logger:1.3.4' compile 'com.noveogroup.android:android-logger:1.3.4'
} }

View File

@@ -10,7 +10,7 @@ dependencies {
provided files('vtm-jni-natives.jar') provided files('vtm-jni-natives.jar')
compile 'com.android.support:support-v4:21.+' compile 'com.android.support:support-v4:21.+'
eclipseCompile project(':appcompat') //eclipseCompile project(':appcompat')
} }
android { android {