feature MIR-6740: [Android] Добавление поддержки Android 14 #6

Open
bogdan.terehov wants to merge 3 commits from feature/MIR-6740 into develop/mir
9 changed files with 31 additions and 7 deletions

View File

@ -1,10 +1,10 @@
apply plugin: 'kotlin-android'
rootProject.ext {
compileSdk = 30
compileSdk = 34
minSdk = 21
targetSdk = 30
targetSdk = 34
}
android {
@ -16,12 +16,12 @@ android {
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}
buildFeatures {

View File

@ -1 +1,5 @@
apply from: "../android-configs/lib-config.gradle"
android {
namespace = "ru.touchin.basemap"
}

View File

@ -1 +1 @@
<manifest package="ru.touchin.basemap"/>
<manifest />

View File

@ -1,5 +1,9 @@
apply from: "../android-configs/lib-config.gradle"
android {
namespace = "ru.touchin.extensions"
}
dependencies {
implementation "androidx.recyclerview:recyclerview"
implementation "androidx.fragment:fragment-ktx"

View File

@ -1,5 +1,9 @@
apply from: "../android-configs/lib-config.gradle"
android {
namespace = "ru.touchin.roboswag.core.log"
}
dependencies {
implementation "androidx.annotation:annotation"

View File

@ -1,6 +1,10 @@
apply from: "../android-configs/lib-config.gradle"
apply plugin: 'kotlin-android'
android {
namespace = "ru.touchin.roboswag.recyclerview_decorators"
}
dependencies {
implementation project(":utils")
implementation project(":kotlin-extensions")

View File

@ -1,5 +1,9 @@
apply from: "../android-configs/lib-config.gradle"
android {
namespace = "ru.touchin.roboswag.core.utils"
}
dependencies {
def coreVersion = '1.0.0'
def annotationVersion = '1.1.0'

View File

@ -13,3 +13,7 @@ dependencies {
}
}
}
android {
namespace = "ru.touchin.yandexmap"
}

View File

@ -1 +1 @@
<manifest package="ru.touchin.yandexmap"/>
<manifest />