Add lib version as sufix in the aar file name

release-v2.2.0
pedroGitt 2016-11-23 00:01:34 +01:00
parent 04fd4c5a13
commit c725a561a2
1 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,7 @@ android {
targetSdkVersion 21
versionCode 1
versionName "1.0"
version "0.3.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
@ -61,6 +62,17 @@ android {
}
clean.dependsOn cleanNative
libraryVariants.all { variant ->
variant.outputs.each { output ->
def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.aar')) {
def fileName = outputFile.name.replace(".aar", "-${version}.aar")
output.outputFile = new File(outputFile.parent, fileName)
}
}
}
}
def getNdkFolder() {