Skip to content
Snippets Groups Projects
Commit c725a561 authored by pedroGitt's avatar pedroGitt
Browse files

Add lib version as sufix in the aar file name

parent 04fd4c5a
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment