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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

* [Changelog for unreleased](#changelog-for-owncloud-android-client-unreleased-unreleased)
* [Changelog for 4.5.1](#changelog-for-owncloud-android-client-451-2025-04-03)
* [Changelog for 4.5.0](#changelog-for-owncloud-android-client-450-2025-03-24)
* [Changelog for 4.4.1](#changelog-for-owncloud-android-client-441-2024-10-30)
Expand All @@ -26,6 +27,27 @@
* [Changelog for 2.18.1](#changelog-for-owncloud-android-client-2181-2021-07-20)
* [Changelog for 2.18.0](#changelog-for-owncloud-android-client-2180-2021-05-24)
* [Changelog for 2.17 versions and below](#changelog-for-217-versions-and-below)
# Changelog for ownCloud Android Client [unreleased] (UNRELEASED)

The following sections list the changes in ownCloud Android Client unreleased relevant to
ownCloud admins and users.

[unreleased]: https://github.com/owncloud/android/compare/v4.5.1...master

## Summary

* Change - Bump target SDK to 35: [#4529](https://github.com/owncloud/android/issues/4529)

## Details

* Change - Bump target SDK to 35: [#4529](https://github.com/owncloud/android/issues/4529)

Target SDK has been upgraded to 35 in order to fulfill Android platform
requirements.

https://github.com/owncloud/android/issues/4529
https://github.com/owncloud/android/pull/4556

# Changelog for ownCloud Android Client [4.5.1] (2025-04-03)

The following sections list the changes in ownCloud Android Client 4.5.1 relevant to
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
buildscript {
ext {
// SDK
sdkCompileVersion = 34
sdkCompileVersion = 35
sdkMinVersion = 24
sdkTargetVersion = 34
sdkTargetVersion = 35
}

repositories {
Expand Down
6 changes: 6 additions & 0 deletions changelog/unreleased/4556
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Change: Bump target SDK to 35

Target SDK has been upgraded to 35 in order to fulfill Android platform requirements.

https://github.com/owncloud/android/issues/4529
https://github.com/owncloud/android/pull/4556
2 changes: 1 addition & 1 deletion owncloudApp/src/main/java/com/owncloud/android/MainApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ class MainApp : Application() {
get() {
val appString = appContext.resources.getString(R.string.user_agent)
val packageName = appContext.packageName
var version = ""
var version: String? = ""

val pInfo: PackageInfo?
try {
Expand Down
Loading