ext { // API 26 (Android 8.0): floor for the native Telecom backend (CallsManager is // @RequiresApi(26)). Telecom is now the sole call backend (no legacy fallback), // so the whole app requires 26+. API 24-25 (Android 7.x) share in 2026 is ~0%. minSdkVersion = 26 compileSdkVersion = 36 targetSdkVersion = 36 androidxActivityVersion = '1.11.0' androidxAppCompatVersion = '1.7.1' androidxCoordinatorLayoutVersion = '1.3.0' androidxCoreVersion = '1.17.0' androidxFragmentVersion = '1.8.9' coreSplashScreenVersion = '1.2.0' androidxWebkitVersion = '1.14.0' junitVersion = '4.13.2' androidxJunitVersion = '1.3.0' androidxEspressoCoreVersion = '3.7.0' cordovaAndroidVersion = '14.0.1' // Telecom (нативные звонки, docs/plans/telecom_migration.md). Kotlin source-set // только для telecom-модуля. kotlinVersion здесь — для документации; сам плагин // подключается по литералу в android/build.gradle (buildscript не видит variables.gradle). kotlinVersion = '2.2.0' coreTelecomVersion = '1.0.1' coroutinesVersion = '1.10.2' }