Can't find android.support.design.widget.Snackbar in support design library

前端 未结 11 957
南方客
南方客 2021-02-02 05:31

I develop own library module where I use Snackbar.

Here is my Gradle file:

apply plugin: \'com.android.library\'

android {
    compileSdkV         


        
11条回答
  •  失恋的感觉
    2021-02-02 06:20

    Try this

    dependencies {
     compile fileTree(include: ['*.jar'], dir: 'libs')
     testCompile 'junit:junit:4.12'
     compile 'com.android.support:appcompat-v7:22.2.0'
     compile 'me.zhanghai.android.materialprogressbar:library:1.1.4'
     compile 'com.android.support:design:22.2.1'
     }
    

提交回复
热议问题