~singpolyma/cheogram-android

a968260b188f0a00772997ce500ca760337b6705 — Daniel Gultsch 7 years ago 0385e3a
fixing travis
2 files changed, 11 insertions(+), 4 deletions(-)

M .travis.yml
M build.gradle
M .travis.yml => .travis.yml +0 -4
@@ 4,10 4,6 @@ android:
    - platform-tools
    - tools
    - build-tools-23.0.2
    - build-tools-23.0.1
    - build-tools-23.0.0
    - build-tools-22.0.1
    - build-tools-21.1.2
    - build-tools-19.1.0
    - android-23
    - extra-android-m2repository

M build.gradle => build.gradle +11 -0
@@ 51,6 51,12 @@ dependencies {
	playstoreCompile 'com.google.android.gms:play-services-gcm:8.4.0'
}

ext {
	travisBuild = System.getenv("TRAVIS") == "true"
	// allows for -Dpre-dex=false to be set
	preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
}

android {
	compileSdkVersion 23
	buildToolsVersion "23.0.2"


@@ 64,6 70,11 @@ android {
		applicationId "eu.siacs.conversations"
	}

	dexOptions {
		// Skip pre-dexing when running on Travis CI or when disabled via -Dpre-dex=false.
		preDexLibraries = preDexEnabled && !travisBuild
	}

	compileOptions {
		sourceCompatibility JavaVersion.VERSION_1_7
		targetCompatibility JavaVersion.VERSION_1_7