Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/Android-CI-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion LogcatCoreLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""

minSdkVersion 21
project.archivesBaseName = "LogcatCore"
project.archivesBaseName = "core"
consumerProguardFiles "consumer.pro"
}
namespace 'info.hannes.logcat'
Expand Down
2 changes: 1 addition & 1 deletion LogcatCoreUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
buildConfigField "String", "VERSIONNAME", "\"" + getTag() + "\""

minSdkVersion 21
project.archivesBaseName = "LogcatCore"
project.archivesBaseName = "coreui"
}
buildFeatures {
viewBinding = true
Expand Down
2 changes: 1 addition & 1 deletion LogcatCountlyLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
defaultConfig {
compileSdk propCompileSdkVersion
minSdkVersion 21
project.archivesBaseName = "LogcatCountly"
project.archivesBaseName = "countly"
}
namespace 'info.hannes.logcat.countly'
compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion LogcatCrashlyticLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
defaultConfig {
compileSdk propCompileSdkVersion
minSdkVersion 21
project.archivesBaseName = "LogcatCrashlytic"
project.archivesBaseName = "crashlytic"
}
namespace 'info.hannes.logcat.crashlytic'
compileOptions {
Expand Down
Loading