16 lines
407 B
Groovy
16 lines
407 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion androidCompileSdkVersion.toInteger()
|
|
ndkVersion androidCompileNdkVersion
|
|
}
|
|
|
|
task makeStubJar(type: Jar){
|
|
dependsOn assemble
|
|
baseName 'framework-stub'
|
|
from("${buildDir}/intermediates/javac/release/classes/")
|
|
exclude('BuildConfig.class', 'R.class')
|
|
exclude{ it.name.startsWith('R$')}
|
|
outputs.file(archivePath)
|
|
}
|