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
2 changes: 1 addition & 1 deletion .github/workflows/Android-CI-Espresso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Build project
run: ./gradlew assembleDebug
- name: Test publish to jitpack.io
run: ./gradlew :LogcatCoreLib:assembleRelease :LogcatCoreLib:publishToMavenLocal :LogcatCoreUI:assembleRelease :LogcatCoreUI:publishToMavenLocal :LogcatCrashlyticLib:assembleRelease :LogcatCrashlyticLib:publishToMavenLocal :LogcatCountlyLib:assembleRelease :LogcatCountlyLib:publishToMavenLocal
run: ./gradlew :core:assembleRelease :core:publishToMavenLocal :coreui:assembleRelease :coreui:publishToMavenLocal :crashlytic:assembleRelease :crashlytic:publishToMavenLocal :countly:assembleRelease :countly:publishToMavenLocal
- name: Run instrumentation tests
uses: hannesa2/action-android/emulator-run-cmd@0.1.16.7
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Android-CI-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
name: ${{steps.tagger.outputs.tag}}
generate_release_notes: true
files: |
LogcatCrashlyticLib/build/outputs/aar/crashlytic-release.aar
crashlytic/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
core/build/outputs/aar/core-release.aar
coreui/build/outputs/aar/coreui-release.aar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ The easiest way to add Logcat to your project is via Gradle. Just add the follow

```groovy
dependencies {
implementation "com.github.AppDevNext.Logcat:LogcatCoreLib:$latest_version"
implementation "com.github.AppDevNext.Logcat:LogcatCoreUI:$latest_version" // UI related classes like Activity, Fragment
implementation 'com.github.AppDevNext.Logcat:LogcatCrashlyticLib:$latest_version'
implementation "com.github.AppDevNext.Logcat:core:$latest_version"
implementation "com.github.AppDevNext.Logcat:coreui:$latest_version" // UI related classes like Activity, Fragment
implementation 'com.github.AppDevNext.Logcat:crashlytic:$latest_version'
}
```

Expand Down Expand Up @@ -85,7 +85,7 @@ or for file logging

To avoid build failure due to higher version of kotlinx-coroutines-android (you are then responsible for loading the excluded required dependencies)

implementation('com.github.AppDevNext.Logcat:LogcatCore:$latest_version') {
implementation('com.github.AppDevNext.Logcat:core:$latest_version') {
exclude group: 'androidx.lifecycle'
exclude group: 'org.jetbrains.kotlin'
exclude group: 'org.jetbrains.kotlinx'
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion LogcatCoreUI/build.gradle → coreui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
}

dependencies {
api project(':LogcatCoreLib')
api project(':core')
implementation "androidx.core:core-ktx:1.13.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1"
Expand Down
2 changes: 1 addition & 1 deletion LogcatCountlyLib/build.gradle → countly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
}

dependencies {
api project(':LogcatCoreLib')
api project(':core')
api "ly.count.android:sdk:24.4.1"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
}

dependencies {
api project(':LogcatCoreLib')
api project(':core')
// Import the BoM for the Firebase platform
api platform('com.google.firebase:firebase-bom:33.5.0')

Expand Down
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdk:
- openjdk17
install:
- ./gradlew :LogcatCoreLib:assembleRelease :LogcatCoreLib:publishToMavenLocal :LogcatCoreUI:assembleRelease :LogcatCoreUI:publishToMavenLocal :LogcatCrashlyticLib:assembleRelease :LogcatCrashlyticLib:publishToMavenLocal :LogcatCountlyLib:assembleRelease :LogcatCountlyLib:publishToMavenLocal
- ./gradlew :core:assembleRelease :core:publishToMavenLocal :coreui:assembleRelease :coreui:publishToMavenLocal :crashlytic:assembleRelease :crashlytic:publishToMavenLocal :countly:assembleRelease :countly:publishToMavenLocal
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ android {
}

dependencies {
implementation project(':LogcatCoreLib')
implementation project(':LogcatCoreUI')
implementation project(':LogcatCrashlyticLib')
implementation project(':LogcatCountlyLib')
implementation project(':core')
implementation project(':coreui')
implementation project(':crashlytic')
implementation project(':crashlytic')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.appcompat:appcompat:1.7.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
Expand Down
10 changes: 5 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include ':LogcatCoreLib'
include ':LogcatCoreUI'
include ':LogcatCrashlyticLib'
include ':LogcatCountlyLib'
include ':sample'
include ':core'
include ':coreui'
include ':crashlytic'
include ':countly'
include ':app'
Loading