File tree Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,24 @@ The title and section headers can be styled by providing custom text appearances
88
88
}
89
89
```
90
90
91
+ ## Breaking changes of version ` 3.0.0 `
92
+
93
+ 1 . Certain APIs have become ` internal ` .
94
+ 2 . In version ` 3.0.0 ` the library uses Java 17. You'll have to add the following to your build file:
95
+
96
+ ``` kotlin
97
+ android {
98
+ compileOptions {
99
+ sourceCompatibility = JavaVersion .VERSION_17
100
+ targetCompatibility = JavaVersion .VERSION_17
101
+ }
102
+
103
+ kotlinOptions {
104
+ jvmTarget = " 17"
105
+ }
106
+ }
107
+ ```
108
+
91
109
## Breaking changes of version ` 2.0.0 `
92
110
In version ` 2.0.0 ` we migrated to [ Emoji2] ( https://developer.android.com/jetpack/androidx/releases/emoji2 ) .
93
111
This results in the removal of:
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ android {
18
18
targetCompatibility = JavaVersion .VERSION_17
19
19
}
20
20
21
+ kotlinOptions {
22
+ jvmTarget = " 17"
23
+ }
24
+
21
25
buildTypes {
22
26
getByName(" release" ) {
23
27
isMinifyEnabled = false
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ android {
17
17
targetCompatibility = JavaVersion .VERSION_17
18
18
}
19
19
20
+ kotlinOptions {
21
+ jvmTarget = " 17"
22
+ }
23
+
20
24
buildTypes {
21
25
getByName(" release" ) {
22
26
isMinifyEnabled = false
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ kotlin.code.style=official
23
23
# Used by https://github.com/vanniktech/gradle-maven-publish-plugin
24
24
GROUP =com.withplum
25
25
POM_ARTIFACT_ID =emojiBottomSheetDialog
26
- VERSION_NAME =2 .0.0
26
+ VERSION_NAME =3 .0.0
27
27
POM_NAME =Emoji Bottom Sheet Dialog
28
28
POM_DESCRIPTION =A nice Android bottom sheet dialog populated with AndroidX EmojiCompat supported emojis.
29
29
POM_INCEPTION_YEAR =2021
You can’t perform that action at this time.
0 commit comments