Android第三方集成

时间:2015-10-05 20:19:21

标签: java android

您好我试图从github实现第三方库。这有点疯狂。我已经经常与第三方libarys合作。我所要做的就是在构建gradle中添加compile命令,但在这种情况下它的内容不同。这是我要实现的lib的github链接:

Link to github

问题是我无权访问此库的所有组件。仅限于com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.0:sources@jar

中的文件

但是在ExpandableExampleActivity类中我必须导入:

import com.h6ah4i.android.example.advrecyclerview.R;
import com.h6ah4i.android.example.advrecyclerview.common.data.AbstractExpandableDataProvider;
import com.h6ah4i.android.example.advrecyclerview.common.fragment.ExampleExpandableDataProviderFragment;

但我不能。我可以在github上看到目录中的文件!!!

有人可以帮助我如何整合这个最好的方法。 THX

buildscript {
    repositories {
        maven { url 'https://raw.github.com/xujiaao/mvn-repository/master/releases' }
    }

    dependencies {
        classpath 'com.github.xujiaao:aarLinkSources:1.0.0'
    }
}

apply plugin: 'com.android.application'
apply plugin: 'aar-link-sources'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0 rc3"

    defaultConfig {
        applicationId "android.oli.com.fitnessapp"
        minSdkVersion 16
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.android.support:recyclerview-v7:23.0.1'
    compile 'com.android.support:cardview-v7:23.0.1'
    compile 'com.github.sundeepk:compact-calendar-view:1.7.8'

    compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.0@aar'){
        transitive=true
    }
    aarLinkSources 'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.0:sources@jar'
}

1 个答案:

答案 0 :(得分:1)

据我所知,你是否只需要导入这三个文件,

import com.h6ah4i.android.example.advrecyclerview.R;
import com.h6ah4i.android.example.advrecyclerview.common.data.AbstractExpandableDataProvider;
import com.h6ah4i.android.example.advrecyclerview.common.fragment.ExampleExpandableDataProviderFragment;

然后只需将github项目中的最后两个文件复制到您自己的文件中。在构建项目时将自动生成R文件。我没有看到这两个文件依赖于其他文件,所以它应该可以工作。