feature MIR-6740: [Android] Добавление поддержки Android 14 #6
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -1 +1,5 @@
|
|||
apply from: "../android-configs/lib-config.gradle"
|
||||
|
||||
android {
|
||||
namespace = "ru.touchin.basemap"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<manifest package="ru.touchin.basemap"/>
|
||||
<manifest />
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
apply from: "../android-configs/lib-config.gradle"
|
||||
|
||||
android {
|
||||
namespace = "ru.touchin.roboswag.core.log"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "androidx.annotation:annotation"
|
||||
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -13,3 +13,7 @@ dependencies {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "ru.touchin.yandexmap"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<manifest package="ru.touchin.yandexmap"/>
|
||||
<manifest />
|
||||
|
|
|
|||
Loading…
Reference in New Issue