2016年1月9日 星期六

Android-How import aar in the project

If you have aar or jar in project's libs
You must add text on build.gradle

This example :
.
.
.
repositories {
    jcenter()
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}
.
.
.
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile (name:'the-hello-world-aar', ext:'aar')
}
.
.
.


歡迎轉載,請註明出處。

沒有留言:

張貼留言