gradle dependency error in android

后端 未结 3 557
别跟我提以往
别跟我提以往 2020-12-03 17:43

In the following build.gradle, I added the configuration section to avoid double inclusion of support libraries. Support libraries are used in the main project and in the de

3条回答
  •  -上瘾入骨i
    2020-12-03 18:25

    I fixed that adding:

    compile ('com.facebook.android:facebook-android-sdk:3.22.0@aar'){
        exclude module: 'support-v4'
    }
    

提交回复
热议问题