You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For everybody struggling with getting it in Android to run/compile
build.gradle:
compileOptions {
// Enable support for the new language APIs
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
[...]
dependencies {
[...]
// GPX Library
implementation 'io.jenetics:jpx:3.2.1'
implementation 'javax.xml.stream:stax-api:1.0-2' // adds javax.xml.stream with XMLStreamWriter etc
implementation 'com.fasterxml.woodstox:woodstox-core:6.4.0' // actual implementation of a XMLOutputFactory etc
}
For everybody struggling with getting it in Android to run/compile
build.gradle:
The text was updated successfully, but these errors were encountered: