mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-15 22:42:47 +00:00
Update targets to java 17 (#186)
The newly upgraded dependencies (gradle 8.3) now require java 17 and the java and jvm targets must both match or there will be a build failure due to lint.
This commit is contained in:
parent
df4bdce00d
commit
3eba91e55c
3 changed files with 10 additions and 10 deletions
|
@ -63,14 +63,14 @@ android {
|
|||
includeAndroidResources = true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_11.toString()
|
||||
jvmTarget = JavaVersion.VERSION_17.toString()
|
||||
}
|
||||
|
||||
namespace "org.dslul.openboard.inputmethod.latin"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue