I'm using aide to compile my projects on Android. I added the library as follows:
org.apache.commons:commons-lang3:3.9
But at compile time I get the following error:
I already tried using the:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
But it didn't solve anything, I saw a question here on Stack Overflow saying to use guava-android
, even so it didn't.