Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
I was facing no lambda support in source 7. To fix it I have added it.
  • Loading branch information
nnrohu authored Jan 25, 2023
1 parent 2e14e6b commit 5644fc6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
Expand Down Expand Up @@ -157,4 +161,4 @@ afterEvaluate { project ->
}
}
}
}
}

0 comments on commit 5644fc6

Please sign in to comment.