Provided Gradle Dependency Is AAR not JAR

后端 未结 7 1416
温柔的废话
温柔的废话 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

    instead of that,

    1. Clone ParseLoginUI from here

    2. Import ParseLoginUI as a module and include these on gradle

      compile project(':ParseLoginUI')
      compile 'com.facebook.android:facebook-android-sdk:4.0.1'
      

    Hope this helps

提交回复
热议问题