android - gradle didn't add jsoup in my apk -


i have project jsoup dependency.

compile 'org.jsoup:jsoup:1.10.3'

but in apk runtime, throws can't find 'org.jsoup.jsoup' exception.

so open apk use apktool.

apktool d myapk.apk

and can't find jsoup.smali in smali folder

i have use android studio build , ./gradlew :app:assembledebug. same!

but on colleague's mac, every thins fine! jsoup.smali exists.

anyone can tell me how research it..

i have tried:

  1. clear gradle cache: rm -rf ~/.gradle


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -