WIth Android Studio: 1.2.RC
I included proguard in .gradle: `` ``
minifyEnabled=true
and added these rules to my proguard-rules.pro:
-dontwarn com.squareup.** -dontwarn okio.**
and added these lint rules to my .gradle file:
warningsAsErrors false abortOnError false disable 'InvalidPackage'
`` ``
But I still get this warning when I try to run the application in debug mode:
``` Warning: okio.DeflaterSink: can't find referenced class org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement Warning: okio.Okio: can't find referenced class java.nio.file.Files Warning: okio.Okio: can't find referenced class java.nio.file.Files Warning: okio.Okio: can't find referenced class java.nio.file.Files Warning: okio.Okio: can't find referenced class java.nio.file.Path Warning: okio.Okio: can't find referenced class java.nio.file.OpenOption Warning: okio.Okio: can't find referenced class java.nio.file.Path Warning: okio.Okio: can't find referenced class java.nio.file.OpenOption Warning: okio.Okio: can't find referenced class org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement Warning: okio.Okio: can't find referenced class java.nio.file.Path Warning: okio.Okio: can't find referenced class java.nio.file.OpenOption Warning: okio.Okio: can't find referenced class java.nio.file.Path Warning: okio.Okio: can't find referenced class java.nio.file.OpenOption Warning: okio.Okio: can't find referenced class org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement Warning: there were 14 unresolved references to classes or interfaces. You may need to add missing library jars or update their versions. If your code works fine without the missing classes, you can suppress the warnings with '-dontwarn' options. (http://proguard.sourceforge.net/manual/troubleshooting.html
`` ``
This is so weird, since I also added these rules / options to all of my library modules, which depend on OkHttp / Picasso, I donβt know where it went wrong, maybe this is an Android Studio bug? Does anyone have any clues on this issue?
I opened issue on github.
android android-studio proguard square okio
Chris hu
source share