At the documentation it says minSdkVersion = 14 , but When I run the app, it says that it requires Android N , minSdkVersion = 24 to run
I changed the minSdkVersion in my gradle to 24 and the app is running
Coil only uses Java 8 features that can be desugared by R8. To enable D8 desugaring check out the docs here. You should update your Android Gradle Plugin to 3.4.1 or greater as well.
yes, I added those to work with the .load() method , and it works nice, but when I try to compile with sdk < 24 it says that it requires Android N to run.
You can check it here, I made a video (is in spanish) : https://youtu.be/7fl63hPxJr0?t=619
Thanks for the library, its awesome !
Hi @colinrtwhite , can you check if that is ok ? , I'm running gradle 3.4.2
@gastsail You only did one part of the documentation; you also need to add compileOptions. See here. Also I would update your Gradle version. 5.6 is the latest.
Most helpful comment
@gastsail You only did one part of the documentation; you also need to add
compileOptions. See here. Also I would update your Gradle version.5.6is the latest.