Skip to content

Commit 71f90c5

Browse files
committed
Added SDK version to apk name to get better tracking of demos.
1 parent 43d27f1 commit 71f90c5

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

AISuite_Demos/AIDataCaptureDemo/app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,10 @@ android {
7575
val versionName = defaultConfig.versionName
7676
val versionCode = defaultConfig.versionCode
7777
val buildType = buildType.name
78+
val sdkVersion = libs.versions.zebraAIVisionSdk.get()
7879

79-
// Format: AI_DataCapture_Demo-v1.8-release.apk or AI_DataCapture_Demo-v1.8-debug.apk
80-
output.outputFileName = "AI_DataCapture_Demo-v${versionName}-${buildType}.apk"
80+
// Format: AI_DataCapture_Demo-v1.8-release-SDK_3.1.4.apk or AI_DataCapture_Demo-v1.8-debug-SDK_3.1.4.apk
81+
output.outputFileName = "AI_DataCapture_Demo-v${versionName}-${buildType}-SDK_${sdkVersion}.apk"
8182
}
8283
}
8384
}

AISuite_Demos/AI_Barcode_Finder/app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ android {
9494
val versionName = defaultConfig.versionName
9595
val versionCode = defaultConfig.versionCode
9696
val buildType = buildType.name
97+
val sdkVersion = libs.versions.zebraAIVisionSdk.get()
9798

98-
// Format: AI_Barcode_Finder-v1.8-release.apk or AI_Barcode_Finder-v1.8-debug.apk
99-
output.outputFileName = "AI_Barcode_Finder-v${versionName}-${buildType}.apk"
99+
// Format: AI_Barcode_Finder-v1.8-release-SDK_3.1.4.apk or AI_Barcode_Finder-v1.8-debug-SDK_3.1.4.apk
100+
output.outputFileName = "AI_Barcode_Finder-v${versionName}-${buildType}-SDK_${sdkVersion}.apk"
100101
}
101102
}
102103
}

AISuite_QuickStart/app/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ android {
4747
val versionName = defaultConfig.versionName
4848
val versionCode = defaultConfig.versionCode
4949
val buildType = buildType.name
50+
val sdkVersion = libs.versions.zebraAIVisionSdk.get()
51+
52+
// Format: AISuite_Quickstart-v1.8-release-SDK_3.1.4.apk or AISuite_Quickstart-v1.8-debug-SDK_3.1.4.apk
53+
output.outputFileName = "AISuite_Quickstart-v${versionName}-${buildType}-SDK_${sdkVersion}.apk"
5054

51-
// Format: AISuite_Quickstart-v1.8-release.apk or AISuite_Quickstart-v1.8-debug.apk
52-
output.outputFileName = "AISuite_Quickstart-v${versionName}-${buildType}.apk"
5355
}
5456
}
5557
}

AISuite_Snippets/app/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@ android {
4545
val versionName = defaultConfig.versionName
4646
val versionCode = defaultConfig.versionCode
4747
val buildType = buildType.name
48+
val sdkVersion = libs.versions.zebraAIVisionSdk.get()
49+
50+
// Format: AISuite_Snippets-v1.8-release-SDK_3.1.4.apk or AISuite_Snippets-v1.8-debug-SDK_3.1.4.apk
51+
output.outputFileName = "AISuite_Snippets-v${versionName}-${buildType}-SDK_${sdkVersion}.apk"
4852

49-
// Format: AISuite_Snippets-v1.8-release.apk or AISuite_Snippets-v1.8-debug.apk
50-
output.outputFileName = "AISuite_Snippets-v${versionName}-${buildType}.apk"
5153
}
5254
}
5355
}

0 commit comments

Comments
 (0)