From 74f6d2bb9e1e98fc6b917ddcb6d9862642d7f018 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Mon, 28 Feb 2022 10:28:44 -0500 Subject: [PATCH] Remove compiler option for experimental unsigned types --- README.md | 1 + build.gradle.kts | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 3faafaf..a985b29 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ val newAddress = wallet.getNewAddress() * [Tatooine Faucet](https://github.com/thunderbiscuit/tatooine) ### How to build +_Note that Kotlin version `1.6.10` or later is required to build the library._ 1. Clone this repository and init and update it's [`bdk-ffi`] submodule. ```shell diff --git a/build.gradle.kts b/build.gradle.kts index a03245b..6271ac9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -46,7 +46,4 @@ allprojects { google() mavenCentral() } - tasks.withType().configureEach { - kotlinOptions.freeCompilerArgs += "-opt-in=kotlin.ExperimentalUnsignedTypes" - } }