update android support library
no idea why gradle cannot find build-tools 19.0.3..
This commit is contained in:
parent
c00000edc8
commit
559a5d0508
@ -7,6 +7,10 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url "${System.env.ANDROID_HOME}/extras/android/m2repository" }
|
||||||
|
}
|
||||||
|
|
||||||
apply plugin: 'android'
|
apply plugin: 'android'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -45,10 +49,6 @@ android {
|
|||||||
|
|
||||||
// Including configurations into Eclipse
|
// Including configurations into Eclipse
|
||||||
|
|
||||||
eclipse.jdt {
|
|
||||||
sourceCompatibility = 1.6
|
|
||||||
targetCompatibility = 1.6
|
|
||||||
}
|
|
||||||
|
|
||||||
// Configuring Eclipse classpath
|
// Configuring Eclipse classpath
|
||||||
eclipse.classpath {
|
eclipse.classpath {
|
||||||
|
@ -7,6 +7,10 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url "${System.env.ANDROID_HOME}/extras/android/m2repository" }
|
||||||
|
}
|
||||||
|
|
||||||
apply plugin: 'android'
|
apply plugin: 'android'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -37,8 +41,6 @@ android {
|
|||||||
|
|
||||||
// Including configurations into Eclipse
|
// Including configurations into Eclipse
|
||||||
eclipse {
|
eclipse {
|
||||||
sourceCompatibility = 1.6
|
|
||||||
targetCompatibility = 1.6
|
|
||||||
|
|
||||||
// Configuring Eclipse classpath
|
// Configuring Eclipse classpath
|
||||||
classpath {
|
classpath {
|
||||||
|
@ -13,11 +13,15 @@ buildscript {
|
|||||||
apply plugin: 'android-library'
|
apply plugin: 'android-library'
|
||||||
apply plugin: 'android-maven'
|
apply plugin: 'android-maven'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url "${System.env.ANDROID_HOME}/extras/android/m2repository" }
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
//compile 'org.oscim:vtm:0.5.9-SNAPSHOT'
|
//compile 'org.oscim:vtm:0.5.9-SNAPSHOT'
|
||||||
compile project(':vtm')
|
compile project(':vtm')
|
||||||
|
|
||||||
compile 'com.android.support:support-v4:19.0.1'
|
compile 'com.android.support:support-v4:19.1.0'
|
||||||
|
|
||||||
// -> might be more efficient, but configuring
|
// -> might be more efficient, but configuring
|
||||||
// log-levels is way too complicated...
|
// log-levels is way too complicated...
|
||||||
@ -83,10 +87,6 @@ eclipse {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
jdt {
|
|
||||||
sourceCompatibility = 1.6
|
|
||||||
targetCompatibility = 1.6
|
|
||||||
}
|
|
||||||
project {
|
project {
|
||||||
natures = ['com.android.ide.eclipse.adt.AndroidNature',
|
natures = ['com.android.ide.eclipse.adt.AndroidNature',
|
||||||
'org.eclipse.jdt.core.javanature']
|
'org.eclipse.jdt.core.javanature']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user