File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## Unreleased
9+
10+ - Bump SentrySDK to 8.17.0
11+ - Fix crash when title is null [ #514 ] ( https://github.com/EmergeTools/hackernews/pull/514 )
12+ - Set Compile SDK to 36
13+
814## 1.0.2 - 2024-11-20
915
1016- Fix crash in CommentsScreen due to incorrect timestamp
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ val runningEnv: String? = System.getenv("RUNNING_ENV")
1414
1515android {
1616 namespace = " com.emergetools.hackernews"
17- compileSdk = 35
17+ compileSdk = 36
1818
1919 defaultConfig {
2020 applicationId = " com.emergetools.hackernews"
2121 minSdk = 30
22- targetSdk = 35
22+ targetSdk = 36
2323 versionCode = 14
2424 versionName = " 1.0.3"
2525
@@ -132,7 +132,7 @@ sentry {
132132
133133 ignoredVariants.set(listOf (" debug" , " fast" ))
134134
135- autoInstallation.sentryVersion.set(" 8.17.0 " )
135+ autoInstallation.sentryVersion.set(libs.versions.sentry.sdk.get() )
136136}
137137
138138dependencies {
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ composeBom = "2025.06.01"
3131uiTestJunit4Android = " 1.8.3"
3232uiautomator = " 2.3.0"
3333benchmarkMacroJunit4 = " 1.3.4"
34+ sentry-sdk = " 8.17.0"
3435
3536[libraries ]
3637androidx-core-ktx = { group = " androidx.core" , name = " core-ktx" , version.ref = " coreKtx" }
You can’t perform that action at this time.
0 commit comments