commit 25ec01e8318fa354bdc9ffec5756fcb023d16a9a
Author: LeszekKoltunski <leszek@koltunski.pl>
Date:   Tue Apr 15 15:17:24 2025 +0200

    first two files converted to Kotlin

diff --git a/build.gradle b/build.gradle
index 32e3835..5986e01 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,11 +1,14 @@
+plugins {
+    alias(libs.plugins.kotlin.android)
+}
 apply plugin: 'com.android.library'
 
 android {
-    compileSdk 34
+    compileSdk 35
 
     defaultConfig {
         minSdk 21
-        targetSdk 34
+        targetSdk 35
     }
 
     buildTypes {
@@ -19,5 +22,12 @@ android {
         sourceCompatibility JavaVersion.VERSION_11
         targetCompatibility JavaVersion.VERSION_11
     }
+    kotlinOptions {
+        jvmTarget = '11'
+    }
+}
+
+dependencies {
+    implementation libs.core.ktx
 }
 
