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.

Open your app build.gradle file (located inside app folder). You'll find something like this:
So here, set the
minSdkVersionto 26. It will look like this after changed: