Im confused as when is java8 bytecode / jdk availa...
# android
u
Im confused as when is java8 bytecode / jdk available
j
Always target 8, regardless of your minSdk. The toolchain can handle it.
u
Thanks. Does jdk8 matter? Is it about availability of Streams etc? i.e. if I dont use it, jdk7 is fine? Or were there some bug fixes?
j
The version of the JDK has no bearing on the APIs that you can use in an Android build. You should always be using 8.
u
k thanks