Skip to content

Commit

Permalink
Fixed build script
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed May 18, 2015
1 parent 94a8e9d commit 854d62d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ContractR/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ allprojects {
project(":core") {
apply plugin: "java"

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile "net.engio:mbassador:1.2.0"
compile "org.xerial:sqlite-jdbc:3.7.2"
Expand All @@ -38,6 +41,9 @@ project(":core") {
project(":android") {
apply plugin: 'com.android.application'

sourceCompatibility = 1.7
targetCompatibility = 1.7

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
Expand All @@ -55,6 +61,10 @@ project(":android") {
targetCompatibility JavaVersion.VERSION_1_6
}

lintOptions {
abortOnError false
}

buildTypes {
release {
minifyEnabled false
Expand All @@ -75,6 +85,9 @@ project(":android") {
project(":ios") {
apply plugin: "java"
apply plugin: "robovm"

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
compile project(":core")
Expand Down

0 comments on commit 854d62d

Please sign in to comment.