StompProtocolAndroid
StompProtocolAndroid copied to clipboard
Versions > 1.5.0 requires API 26 or newer...
Hey.
I can't use your library in my project (MIN SDK 19), because i got error:
Invoke-customs are only supported starting with Android O (--min-api 26)
Message{kind=ERROR, text=Invoke-customs are only supported starting with Android O (--min-api 26), sources=[Unknown source file], tool name=Optional.of(D8)}
I have to use version 1.4.5 which works OK. Can you please fix that?
@NaikSoftware ?
Hi all.
@blocha I had the same issue with the --min-api 26.
I solved it by adding
android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
to my gradle.build
(app) file
Hi all. @blocha I had the same issue with the --min-api 26. I solved it by adding
android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
to my
gradle.build
(app) file
I already had this and it didn't help.