Skip to content

Commit cfa40d8

Browse files
authored
Merge pull request #756 from AppDevNext/RenameArtifacts
Rename artifacts
2 parents 7a4dca6 + 23b0f84 commit cfa40d8

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/Android-CI-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ jobs:
5151
name: ${{steps.tagger.outputs.tag}}
5252
generate_release_notes: true
5353
files: |
54-
LogcatCrashlyticLib/build/outputs/aar/LogcatCrashlytic-release.aar
55-
LogcatCountlyLib/build/outputs/aar/LogcatCountly-release.aar
56-
LogcatCoreLib/build/outputs/aar/LogcatCore-release.aar
54+
LogcatCrashlyticLib/build/outputs/aar/crashlytic-release.aar
55+
LogcatCountlyLib/build/outputs/aar/countly-release.aar
56+
LogcatCoreLib/build/outputs/aar/core-release.aar
57+
LogcatCoreUi/build/outputs/aar/coreui-release.aar
5758
env:
5859
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

LogcatCoreLib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""
1111

1212
minSdkVersion 21
13-
project.archivesBaseName = "LogcatCore"
13+
project.archivesBaseName = "core"
1414
consumerProguardFiles "consumer.pro"
1515
}
1616
namespace 'info.hannes.logcat'

LogcatCoreUI/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""
1111

1212
minSdkVersion 21
13-
project.archivesBaseName = "LogcatCore"
13+
project.archivesBaseName = "coreui"
1414
}
1515
buildFeatures {
1616
viewBinding = true

LogcatCountlyLib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
defaultConfig {
99
compileSdk propCompileSdkVersion
1010
minSdkVersion 21
11-
project.archivesBaseName = "LogcatCountly"
11+
project.archivesBaseName = "countly"
1212
}
1313
namespace 'info.hannes.logcat.countly'
1414
compileOptions {

LogcatCrashlyticLib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
defaultConfig {
1010
compileSdk propCompileSdkVersion
1111
minSdkVersion 21
12-
project.archivesBaseName = "LogcatCrashlytic"
12+
project.archivesBaseName = "crashlytic"
1313
}
1414
namespace 'info.hannes.logcat.crashlytic'
1515
compileOptions {

0 commit comments

Comments
 (0)