Compare commits
5 Commits
master
...
feature/MI
| Author | SHA1 | Date |
|---|---|---|
|
|
03afdcbe20 | |
|
|
78b0715f51 | |
|
|
8218d32f88 | |
|
|
14f2d637aa | |
|
|
985a5658f0 |
|
|
@ -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 />
|
||||
|
|
|
|||
10
build.gradle
10
build.gradle
|
|
@ -1,8 +1,8 @@
|
|||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
maven {
|
||||
url = uri("https://nexus.mir/repository/maven-proxy-group/")
|
||||
}
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:4.0.0'
|
||||
|
|
@ -14,10 +14,8 @@ buildscript {
|
|||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
maven {
|
||||
url "https://maven.dev.touchin.ru/"
|
||||
url = uri("https://nexus.mir/repository/maven-proxy-group/")
|
||||
metadataSources {
|
||||
artifact()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
@ -28,5 +32,7 @@ dependencies {
|
|||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://nexus.mir/repository/maven-proxy-group/")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -35,5 +35,7 @@ dependencies {
|
|||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://nexus.mir/repository/maven-proxy-group/")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,5 +46,7 @@ dependencies {
|
|||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://nexus.mir/repository/maven-proxy-group/")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,3 +13,7 @@ dependencies {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "ru.touchin.yandexmap"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<manifest package="ru.touchin.yandexmap"/>
|
||||
<manifest />
|
||||
|
|
|
|||
Loading…
Reference in New Issue