Skip to content

Commit 30f1169

Browse files
Merge pull request #37 from MateusRodCosta/dev
Version 1.3.3
2 parents 13401de + 527abce commit 30f1169

File tree

8 files changed

+26
-14
lines changed

8 files changed

+26
-14
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (keystorePropertiesFile.exists()) {
1313
}
1414

1515
kotlin {
16-
jvmToolchain(17)
16+
jvmToolchain(21)
1717
}
1818

1919
android {
@@ -25,8 +25,8 @@ android {
2525
minSdk = 26
2626
//noinspection OldTargetApi
2727
targetSdk = 34
28-
versionCode = 23
29-
versionName = "1.3.2"
28+
versionCode = 24
29+
versionName = "1.3.3"
3030

3131
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3232
}
@@ -60,11 +60,11 @@ android {
6060
}
6161

6262
compileOptions {
63-
sourceCompatibility = JavaVersion.VERSION_17
64-
targetCompatibility = JavaVersion.VERSION_17
63+
sourceCompatibility = JavaVersion.VERSION_21
64+
targetCompatibility = JavaVersion.VERSION_21
6565
}
6666
kotlinOptions {
67-
jvmTarget = "17"
67+
jvmTarget = "21"
6868
}
6969

7070
androidResources {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<strong>IMPORTANT</strong>:
2+
Starting in v1.2.3, a 1 kb buffer is used for the file copy, but that introduced a bug: zeroes might be added at the end of the saved file.
3+
This was fixed in 1.3.1, please report any issue you may find!
4+
5+
This is a minor maintenance release for adding Java 21 support.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<strong>IMPORTANTE</strong>:
2+
A partir da versão 1.2.3 a cópia de arquivo passou a usar um buffer de 1 kb, mas isso introduziu um bug: zeros poderiam ser adicionados no final do arquivo salvo.
3+
Isso foi corrigido na versão 1.3.1, por favor reporte qualquer problema!
4+
5+
Esta é uma versão de manutenção com foco no suporte ao Java 21.

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
2-
agp = "8.6.0"
2+
agp = "8.7.0"
33
kotlin = "2.0.0"
44
ktx = "1.13.1"
55
preference-ktx = "1.2.1"
6-
lifecycle-runtime-ktx = "2.8.5"
6+
lifecycle-runtime-ktx = "2.8.6"
77
splashscreen = "1.0.1"
8-
composeBom = "2024.09.01"
8+
composeBom = "2024.09.03"
99
activityCompose = "1.9.2"
10-
navigationCompose = "2.8.0"
10+
navigationCompose = "2.8.2"
1111
junit = "4.13.2"
1212
androidxTestRunner = "1.6.2"
1313
androidxTestRules = "1.6.1"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)