diff --git a/.github/workflows/Android-CI-release.yml b/.github/workflows/Android-CI-release.yml index 2d802864..17f3aa3c 100644 --- a/.github/workflows/Android-CI-release.yml +++ b/.github/workflows/Android-CI-release.yml @@ -51,8 +51,9 @@ jobs: name: ${{steps.tagger.outputs.tag}} generate_release_notes: true files: | - LogcatCrashlyticLib/build/outputs/aar/LogcatCrashlytic-release.aar - LogcatCountlyLib/build/outputs/aar/LogcatCountly-release.aar - LogcatCoreLib/build/outputs/aar/LogcatCore-release.aar + LogcatCrashlyticLib/build/outputs/aar/crashlytic-release.aar + LogcatCountlyLib/build/outputs/aar/countly-release.aar + LogcatCoreLib/build/outputs/aar/core-release.aar + LogcatCoreUi/build/outputs/aar/coreui-release.aar env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/LogcatCoreLib/build.gradle b/LogcatCoreLib/build.gradle index 990f2b82..338ec899 100644 --- a/LogcatCoreLib/build.gradle +++ b/LogcatCoreLib/build.gradle @@ -10,7 +10,7 @@ android { buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\"" minSdkVersion 21 - project.archivesBaseName = "LogcatCore" + project.archivesBaseName = "core" consumerProguardFiles "consumer.pro" } namespace 'info.hannes.logcat' diff --git a/LogcatCoreUI/build.gradle b/LogcatCoreUI/build.gradle index 1c44b833..c57b7804 100644 --- a/LogcatCoreUI/build.gradle +++ b/LogcatCoreUI/build.gradle @@ -10,7 +10,7 @@ android { buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\"" minSdkVersion 21 - project.archivesBaseName = "LogcatCore" + project.archivesBaseName = "coreui" } buildFeatures { viewBinding = true diff --git a/LogcatCountlyLib/build.gradle b/LogcatCountlyLib/build.gradle index bce47f52..cf42b2f3 100644 --- a/LogcatCountlyLib/build.gradle +++ b/LogcatCountlyLib/build.gradle @@ -8,7 +8,7 @@ android { defaultConfig { compileSdk propCompileSdkVersion minSdkVersion 21 - project.archivesBaseName = "LogcatCountly" + project.archivesBaseName = "countly" } namespace 'info.hannes.logcat.countly' compileOptions { diff --git a/LogcatCrashlyticLib/build.gradle b/LogcatCrashlyticLib/build.gradle index 4f218300..2742c9ec 100644 --- a/LogcatCrashlyticLib/build.gradle +++ b/LogcatCrashlyticLib/build.gradle @@ -9,7 +9,7 @@ android { defaultConfig { compileSdk propCompileSdkVersion minSdkVersion 21 - project.archivesBaseName = "LogcatCrashlytic" + project.archivesBaseName = "crashlytic" } namespace 'info.hannes.logcat.crashlytic' compileOptions {