Gradle and Android support library

后端 未结 2 1382
醉话见心
醉话见心 2021-02-04 03:45

In almost every Android app we need a couple of library projects like ABS, HoloEverywhere, etc. Most of these are in Maven Central, which is good. What is bad is, most of them d

相关标签:
2条回答
  • 2021-02-04 04:19

    We will provide artifact versions of the support libraries. Stay tuned.

    Edit: The artifacts are now available. You have to download "Android Support Repository" in your SDK. The gradle build system will automatically use this as a local Maven repository.

    There are 3 artifacts in it right now:

    com.android.support:support-v4:21.0.0
    com.android.support:support-v13:21.0.0
    com.android.support:gridlayout-v7:21.0.0
    com.android.support:appcompat-v7:21.0.0
    
    0 讨论(0)
  • 2021-02-04 04:42
    apply plugin: 'android-library'
    
    dependencies {
        compile 'com.android.support:support-v4:21.0.0'
    }
    
    0 讨论(0)
提交回复
热议问题