In Android Android apps Android sdk, you'll find two ways to add dependency to your project. In the Getting Started section, the line in gradle is
compile 'com.facebook.android:facebook-android-sdk:4.+'
but in the quick start guide line
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
In addition, Android Studio warns that you should not use "+" in version numbers, which leads to unique builds. I saw a “+” for other dependencies, and I believe that this means getting the latest version when gradle synchronizes, but what does the square bracket and brackets in the second line mean?
android gradle
lolsheeplol
source share