Skip to content

Commit a1df81a

Browse files
committed
Fix deprecated features, update changelog and version
1 parent 1ce0a89 commit a1df81a

File tree

5 files changed

+25
-14
lines changed

5 files changed

+25
-14
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
[Donnnno]: https://github.com/Donnnno
44

5+
# v3.21.1
6+
- Fixed deprecated features
7+
8+
# v3.20.4
9+
- Updated AGP and dependencies
10+
- Updated Bluesky icon
11+
- Add support for Projectivy Launcher
12+
- Updated Photoview
13+
14+
# v3.20.3
15+
- Update TapTargetView
16+
17+
# v3.20.2
18+
- Updated Muzei to v3.4.2 and some other dependencies
19+
520
# v3.20.1
621
- Improve notification support
722

app/build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ android {
4444
}
4545
}
4646

47-
compileOptions {
48-
sourceCompatibility JavaVersion.VERSION_1_8
49-
targetCompatibility JavaVersion.VERSION_1_8
50-
}
5147

5248
buildFeatures {
5349
buildConfig = true
@@ -58,6 +54,12 @@ android {
5854
}
5955
}
6056

57+
java {
58+
toolchain {
59+
languageVersion = JavaLanguageVersion.of(11)
60+
}
61+
}
62+
6163
dependencies {
6264
implementation project(':library')
6365

app/src/main/res/values/changelog.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<string name="changelog_date" translatable="false">Dec 17, 2024</string>
44

55
<string-array name="changelog">
6-
<item>Updated AGP and dependencies</item>
7-
<item>Add support for Projectivy Launcher</item>
8-
<item>Updated Photoview</item>
6+
<item>Fixed deprecated features</item>
97
</string-array>
108

119
</resources>

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ allprojects {
1919

2020
rootProject.ext {
2121
def major = 3
22-
def minor = 20
23-
def patch = 4
22+
def minor = 21
23+
def patch = 1
2424

2525
VersionCode = major * 10000 + minor * 100 + patch
2626
VersionName = "$major.$minor.$patch"

library/build.gradle

+1-5
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ android {
6262
}
6363
}
6464

65-
compileOptions {
66-
sourceCompatibility JavaVersion.VERSION_1_8
67-
targetCompatibility JavaVersion.VERSION_1_8
68-
}
6965

7066

7167
packagingOptions {
@@ -137,6 +133,6 @@ dependencies {
137133

138134
java {
139135
toolchain {
140-
languageVersion = JavaLanguageVersion.of(17)
136+
languageVersion = JavaLanguageVersion.of(11)
141137
}
142138
}

0 commit comments

Comments
 (0)