js-labs / WalkieTalkie

Android WiFi Walkie Talkie (js-collider framework demo)
Other
137 stars 58 forks source link

Force Java7 when using Java7 functionality. #4

Closed ghost closed 8 years ago

ghost commented 8 years ago

When using features like the diamon operator, you should explicitly state the java version. you can do that by adding the following lines to build.gradle in the android section:

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
}
js-labs commented 8 years ago

Thank you, fixed.