This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Remove compiler option to suppress warnings for using experimental unsigned types #11
Milestone
Comments
thunderbiscuit
changed the title
Remove annotation suppression for using experimental unsigned types
Remove compiler option to suppress warnings for using experimental unsigned types
Feb 12, 2022
artfuldev
assigned thunderbiscuit and artfuldev and unassigned thunderbiscuit and artfuldev
Feb 13, 2022
@notmandatory can we add a release target/milestone/version for this? |
@thunderbiscuit I missed the part about us using a later kotlin version than 1.5 🤦 |
Yes well to be honest I'm not sure it's enforced anywhere, but I think the following block will throw warnings at you if you're using a different version: buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
} |
I think it's reasonable to update the README as part of this PR to require Kotlin version |
Fixed by #17 |
1 task
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The following block is no longer necessary as of Kotlin 1.5 (we're currently using 1.6.10):
See uniffi-rs docs here and related merged PR here for more info.
I can't assign myself but @notmandatory feel free to assign me this one.
The text was updated successfully, but these errors were encountered: