Skip to content

Commit

Permalink
Merge pull request #1 from alexander255/master
Browse files Browse the repository at this point in the history
Android Compatibility
  • Loading branch information
nomemory authored Jun 20, 2017
2 parents 77855bd + 8df749e commit 674e7c6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ repositories {
mavenCentral()
}

tasks.withType(JavaCompile) {
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.4'
}
Expand All @@ -30,4 +35,4 @@ test {
}

apply from: 'install.gradle'
apply from: 'bintray.gradle'
apply from: 'bintray.gradle'

0 comments on commit 674e7c6

Please sign in to comment.