plugins { id("com.android.application") id("org.jetbrains.kotlin.android") } android { namespace = "ru.ua1zbe.svxremote" compileSdk = 34 defaultConfig { applicationId = "ru.ua1zbe.svxremote" minSdk = 26 targetSdk = 34 versionCode = 6 versionName = "1.0.4" } buildTypes { release { isMinifyEnabled = false } } lint { checkReleaseBuilds = false abortOnError = false } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } } kotlin { compilerOptions { jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17) } } dependencies { testImplementation("junit:junit:4.13.2") } android { testOptions { unitTests { isReturnDefaultValues = true all { it.maxHeapSize = "256m" } } } }