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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<a href="https://github.com/sudo-py-dev/SaveTo/actions/workflows/ci.yml"><img src="https://github.com/sudo-py-dev/SaveTo/actions/workflows/ci.yml/badge.svg" alt="Android CI" /></a>
<a href="https://github.com/sudo-py-dev/SaveTo/releases"><img src="https://img.shields.io/badge/release-v1.1-blue.svg?logo=github" alt="GitHub Release" /></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-orange.svg" alt="License" /></a>
<a href="https://android-arsenal.com/api?level=21"><img src="https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat&logo=android" alt="API Level" /></a>
<a href="https://android-arsenal.com/api?level=23"><img src="https://img.shields.io/badge/API-23%2B-brightgreen.svg?style=flat&logo=android" alt="API Level" /></a>
</p>

<p align="center">
Expand Down Expand Up @@ -66,7 +66,7 @@ graph TD

## Development & Build Requirements

- **SDK Targets**: Min SDK `21` (Android 5.0), Target SDK `34` (Android 14)
- **SDK Targets**: Min SDK `23` (Android 6.0), Target SDK `35` (Android 15)
- **Java Compatibility**: JDK `17` toolchain
- **Build Tool**: Gradle Kotlin DSL

Expand Down
15 changes: 7 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}

import java.util.Properties
Expand All @@ -14,7 +13,7 @@ if (keystorePropertiesFile.exists()) {

android {
namespace = "com.save.to"
compileSdk = 35
compileSdk = 36

signingConfigs {
create("release") {
Expand All @@ -35,7 +34,7 @@ android {

defaultConfig {
applicationId = "com.save.to"
minSdk = 21
minSdk = 23
targetSdk = 35
versionCode = 2
versionName = "1.1"
Expand Down Expand Up @@ -90,11 +89,11 @@ android {
}

dependencies {
implementation("androidx.activity:activity-ktx:1.9.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1")
implementation("androidx.activity:activity-ktx:1.13.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0")

testImplementation("junit:junit:4.13.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1")
testImplementation("io.mockk:mockk:1.13.12")
testImplementation("org.robolectric:robolectric:4.12.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
testImplementation("io.mockk:mockk:1.14.11")
testImplementation("org.robolectric:robolectric:4.16.1")
}
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
plugins {
id("com.android.application") version "8.8.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
id("com.android.application") version "9.2.1" apply false
}
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew

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

Loading