Skip to content

Commit

Permalink
Add a couple of references
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu committed Nov 4, 2024
1 parent a48d8d0 commit 15cd803
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| Readium | Android min SDK | Android compile SDK | Kotlin compiler (✻) | Gradle (✻) |
|-----------|-----------------|---------------------|---------------------|------------|
| `develop` | 21 | 35 | 1.9.24 | 8.10.2 |
| `develop` | 21 | 35 | 2.0.21 | 8.10.2 |
| 3.0.0 | 21 | 34 | 1.9.24 | 8.6.0 |
| 2.3.0 | 21 | 33 | 1.7.10 | 6.9.3 |

Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,7 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

# FIXME: There are still a few issues with KSP and K2. It probably won't be ready until Room is
# updated to 2.7.0 (currently in alpha), and the KSP2 issue with @TypeConverters is fixed.
#ksp.useKSP2=true
1 change: 1 addition & 0 deletions readium/lcp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ android {
namespace = "org.readium.r2.lcp"

kotlinOptions {
// See https://github.com/readium/kotlin-toolkit/pull/525#issuecomment-2300084041
freeCompilerArgs = freeCompilerArgs + ("-Xconsistent-data-class-copy-visibility")
}
}
Expand Down
1 change: 1 addition & 0 deletions readium/navigator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ android {
}

kotlinOptions {
// See https://github.com/readium/kotlin-toolkit/pull/525#issuecomment-2300084041
freeCompilerArgs = freeCompilerArgs + ("-Xconsistent-data-class-copy-visibility")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ public sealed class Url : Parcelable {
* WARNING: Strict URL comparisons can be a source of bug, if the URLs are not normalized.
* In most cases, you should compare using [Url.isEquivalent].
*/
// @DelicateReadiumApi
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
Expand Down

0 comments on commit 15cd803

Please sign in to comment.