From 3999748747ff369bbe06e14f879228272b0b4192 Mon Sep 17 00:00:00 2001 From: tongtongstudio Date: Tue, 19 May 2026 19:50:03 +0800 Subject: [PATCH] build: update kotlin plugin update kotlin version to 2.3.21 use org.jetbrains.kotlin.android add aidl support --- app/build.gradle | 9 ++++++--- build.gradle | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 39f9ed5..d0325d3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,8 @@ -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply plugin: 'kotlin-kapt' +plugins { + id 'com.android.application' + id 'org.jetbrains.kotlin.android' + id 'kotlin-kapt' +} static def appName() { return "TTStdElderlyDialer" @@ -87,6 +89,7 @@ android { buildFeatures { dataBinding true buildConfig true + aidl true } externalNativeBuild { diff --git a/build.gradle b/build.gradle index 183e22c..56464ff 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply from: "config.gradle" buildscript { - ext.kotlin_version = '2.2.21' + ext.kotlin_version = '2.3.21' repositories { google()