Skip to content

Commit

Permalink
changelogs/168.txt; bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshnsears committed Apr 19, 2024
1 parent c69cc5a commit 951dd77
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Expand Up @@ -48,4 +48,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
./gradlew :utilsLib:testGoogleplayDebugCoverage sonarqube --info
./gradlew :utilsLib:testFdroidDebugCoverage sonarqube --info
28 changes: 28 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -9,11 +9,11 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.5"
classpath "org.jacoco:org.jacoco.core:0.8.8"
classpath 'com.android.tools.build:gradle:8.3.2'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.6"
classpath "org.jacoco:org.jacoco.core:0.8.12"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.4.1.3373"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:5.0.0.4638"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Sun Mar 10 11:44:48 EET 2024
#Fri Apr 19 16:30:36 EEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions sonarcube.gradle
Expand Up @@ -6,6 +6,6 @@ sonarqube {
property "sonar.organization", "jameshnsears-github"
property "sonar.projectName", "QuoteUnquote.utilsLib"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.coverage.jacoco.xmlReportPaths", "build/reports/GoogleplayDebug.xml"
property "sonar.java.binaries", "/home/runner/work/QuoteUnquote.utilsLib/QuoteUnquote.utilsLib/utilsLib/build/intermediates/javac/fdroidDebug/compileFdroidDebugJavaWithJavac/classes"
}
}
}
8 changes: 4 additions & 4 deletions utilsLib/build.gradle
Expand Up @@ -123,21 +123,21 @@ android {
}

dependencies {
googleplayImplementation platform('com.google.firebase:firebase-bom:32.7.4')
googleplayImplementation 'com.google.firebase:firebase-analytics:21.5.1'
googleplayImplementation platform('com.google.firebase:firebase-bom:32.8.1')
googleplayImplementation 'com.google.firebase:firebase-analytics:21.6.2'
googleplayImplementation 'com.google.firebase:firebase-appindexing:20.0.0'
googleplayImplementation 'com.google.firebase:firebase-perf:20.5.2'
googleplayImplementation 'com.microsoft.appcenter:appcenter-analytics:5.0.4'
googleplayImplementation 'com.microsoft.appcenter:appcenter-crashes:5.0.4'

implementation 'androidx.annotation:annotation:1.7.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.core:core-ktx:1.13.0'
implementation 'com.jakewharton.timber:timber:5.0.1'

testImplementation 'androidx.test.ext:junit:1.1.5'
testImplementation 'androidx.test:runner:1.5.2'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.robolectric:robolectric:4.11.1'
testImplementation 'org.robolectric:robolectric:4.12.1'
}

repositories {
Expand Down

0 comments on commit 951dd77

Please sign in to comment.