Provided Gradle Dependency Is AAR not JAR

后端 未结 7 1317
温柔的废话
温柔的废话 2021-02-18 16:07

I have an issue where I\'m trying to include a library in my project called the ParseLoginUI.

The issue is it uses the provided tag instead of compile. I b

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-18 17:01

    you have already mentioned that it is an open issue in Gradle. If you are using ParseLoginUI as library module. Just change the build.gradle file in ParseLoginUI itself.

        provided 'com.facebook.android:facebook-android-sdk:4.0.1'
                                  to
        compile 'com.facebook.android:facebook-android-sdk:4.0.1'
    

提交回复
热议问题