buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.fataar.plugin:fataar-plugin:1.0.2'
}
}
'enable = true' is mean fat-aar turn on.
'enable = false' is mean fat-aar turn off.
fatLibraryExt {
enable true
}
apply plugin: 'com.fataar.plugin'
embed 'com.squareup.retrofit2:retrofit:2.3.0'
embed 'com.squareup.retrofit2:converter-gson:2.3.0'
embed 'com.squareup.retrofit2:adapter-rxjava:2.3.0'
fatLibraryExt {
enable true
excludeFiles {
libs {
fileNames('gson.jar')
}
}
}