Skip to content

Commit c10c4f1

Browse files
authored
Revert java to 1.8, fixes #826 (#827)
Release 1.2.27
1 parent 84a9259 commit c10c4f1

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
#### 1.2.27
2+
- 2023-07-03 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.26...v1.2.27)
3+
- Revert java to 1.8, fixes [(#826)](https://github.com/koral--/android-gif-drawable/pull/826), thanks @droplet-js for reporting
4+
15
#### 1.2.26
2-
- 2023-07-30 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.25...v1.2.26)
6+
- 2023-06-30 - [commits](https://github.com/koral--/android-gif-drawable/compare/v1.2.25...v1.2.26)
37
- Update dependency versions
48
- Update NDK to 25.2.9519653
59
- Update Android Gradle plugin to 8.0.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Bundled GIFLib via JNI is used to render frames. This way should be more efficie
2222
Insert the following dependency to `build.gradle` file of your project.
2323
```groovy
2424
dependencies {
25-
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.26'
25+
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.27'
2626
}
2727
```
2828
Note that Maven central repository should be defined eg. in top-level `build.gradle` like this:

android-gif-drawable/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
compileSdkVersion versions.compileSdk
1010

1111
compileOptions {
12-
sourceCompatibility JavaVersion.VERSION_17
13-
targetCompatibility JavaVersion.VERSION_17
12+
sourceCompatibility JavaVersion.VERSION_1_8
13+
targetCompatibility JavaVersion.VERSION_1_8
1414
}
1515

1616
defaultConfig {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RELEASE_SIGNING_ENABLED=true
77

88
GROUP=pl.droidsonroids.gif
99
POM_ARTIFACT_ID=android-gif-drawable
10-
VERSION_NAME=1.2.26
10+
VERSION_NAME=1.2.27
1111

1212
POM_NAME=android-gif-drawable
1313
POM_DESCRIPTION=Views and Drawable for displaying animated GIFs for Android

0 commit comments

Comments
 (0)