Skip to content

Commit 3caab8e

Browse files
committed
Upgrade gradle, and a few dependencies
1 parent 922cc52 commit 3caab8e

7 files changed

Lines changed: 213 additions & 140 deletions

File tree

app/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ plugins {
33
}
44

55
android {
6-
namespace 'com.aidinhut.simpletextcrypt'
7-
compileSdk 36
6+
namespace = 'com.aidinhut.simpletextcrypt'
7+
compileSdk = 36
88

99
defaultConfig {
10-
applicationId "com.aidinhut.simpletextcrypt"
11-
minSdk 26
12-
targetSdk 36
13-
versionCode 16
14-
versionName "5.1"
10+
applicationId = "com.aidinhut.simpletextcrypt"
11+
minSdk = 26
12+
targetSdk = 36
13+
versionCode = 17
14+
versionName = "6.0"
1515

16-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1717
}
1818

1919
buildTypes {
2020
release {
21-
minifyEnabled true
22-
shrinkResources true
21+
minifyEnabled = true
22+
shrinkResources = true
2323
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2424

2525
// To test the app on release locally, uncomment this line to sign it locally.
@@ -28,7 +28,7 @@ android {
2828
}
2929

3030
buildFeatures {
31-
viewBinding true
31+
viewBinding = true
3232
}
3333

3434
useLibrary 'android.test.runner'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
UI re-written and re-designed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[versions]
2-
agp = "8.11.1"
2+
agp = "9.0.1"
33
argon2kt = "1.6.0"
44
junit = "4.13.2"
55
junitVersion = "1.3.0"
66
espressoCore = "3.7.0"
77
appcompat = "1.7.1"
88
material = "1.3.2"
9-
activity = "1.10.1"
9+
activity = "1.12.4"
1010
constraintlayout = "2.2.1"
1111
androidXTestVersion = "1.7.0"
1212

gradle/wrapper/gradle-wrapper.jar

-15.1 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Wed Mar 19 08:52:19 NZDT 2025
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)