| commit | 2c4b898f532834593614f587c4a32b18d04e98bd | [log] [tgz] |
|---|---|---|
| author | Egor Andreevici <andreevich.egor@gmail.com> | Sun Apr 07 10:55:08 2019 -0400 |
| committer | Egor Andreevici <andreevich.egor@gmail.com> | Sun Apr 07 10:55:08 2019 -0400 |
| tree | 856264e0b5fd8aeca7b19e89ec315b79b6d87d66 | |
| parent | 41e9e3002a63150e6bbeaec0e37d1c242650e2cf [diff] |
Use new Gradle DSL to configure Native outputs
diff --git a/okio/build.gradle b/okio/build.gradle index 79fed3e..c209489 100644 --- a/okio/build.gradle +++ b/okio/build.gradle
@@ -20,10 +20,14 @@ } } iosX64() { - compilations.main.outputKinds 'framework' + binaries { + framework() + } } iosArm64() { - compilations.main.outputKinds 'framework' + binaries { + framework() + } } // Required to generate tests tasks: https://youtrack.jetbrains.com/issue/KT-26547 linuxX64()