diff options
| author | ilotterytea <iltsu@alright.party> | 2022-12-05 21:02:21 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-12-05 21:02:21 +0600 |
| commit | 5865a9b4cc375f08458b6c3cd3974c54a1732695 (patch) | |
| tree | bc3b274dacfe28adf326bffeecd456d42ffa61d8 | |
| parent | 45891b62bd60ff95fca75c0a618511286c8a11b9 (diff) | |
Kotlin support for Android
| -rw-r--r-- | build.gradle | 1 | ||||
| -rw-r--r-- | core/build.gradle | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index a58bfeb..9508256 100644 --- a/build.gradle +++ b/build.gradle @@ -60,6 +60,7 @@ project(":desktop") { project(":android") { apply plugin: "com.android.application" + apply plugin: "kotlin-android" configurations { natives } diff --git a/core/build.gradle b/core/build.gradle index 468d26e..6652ac3 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,6 +1,6 @@ sourceCompatibility = 1.7 dependencies { - implementation 'org.jetbrains:annotations-java5:20.1.0' + //implementation 'org.jetbrains:annotations-java5:20.1.0' } [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' |
