NoClassDefFoundError on Calligraphy library

后端 未结 6 726
南笙
南笙 2021-01-01 19:49

After adding compile \'com.android.support:support-v13:21.0.+\' to build.gradle, I had some conflicts on building my app, so I had to add m

6条回答
  •  抹茶落季
    2021-01-01 19:55

    What i did was too update the compiling library in app level gradle file.

    compile 'com.android.support:multidex:1.0.0'
    

    I updated it too

    compile 'com.android.support:multidex:1.0.1'
    

    and it worked fine for me. Maybe this helps someone.

提交回复
热议问题