Skip to content
Open
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
6 changes: 6 additions & 0 deletions android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

- Bump SentrySDK to 8.17.0
- Fix crash when title is null [#514](https://github.com/EmergeTools/hackernews/pull/514)
- Set Compile SDK to 36

## 1.0.2 - 2024-11-20

- Fix crash in CommentsScreen due to incorrect timestamp
Expand Down
6 changes: 3 additions & 3 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ val runningEnv: String? = System.getenv("RUNNING_ENV")

android {
namespace = "com.emergetools.hackernews"
compileSdk = 35
compileSdk = 36

defaultConfig {
applicationId = "com.emergetools.hackernews"
minSdk = 30
targetSdk = 35
targetSdk = 36
versionCode = 14
versionName = "1.0.3"

Expand Down Expand Up @@ -132,7 +132,7 @@ sentry {

ignoredVariants.set(listOf("debug", "fast"))

autoInstallation.sentryVersion.set("8.17.0")
autoInstallation.sentryVersion.set(libs.versions.sentry.sdk.get())
}

dependencies {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions android/app/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Need to use SDK = 35 until https://github.com/robolectric/robolectric/issues/10103 is resolved
sdk=35
1 change: 1 addition & 0 deletions android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ composeBom = "2025.06.01"
uiTestJunit4Android = "1.8.3"
uiautomator = "2.3.0"
benchmarkMacroJunit4 = "1.3.4"
sentry-sdk = "8.17.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand Down