1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-698 Project | Tech | Add dependencies and auto config subprojects (#2759)

This commit is contained in:
Mikhail 2022-12-13 09:43:31 +03:00 committed by GitHub
parent b11fabeb11
commit 216a4f7e79
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 125 additions and 334 deletions

View file

@ -1,32 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
def config = rootProject.extensions.getByName("ext")
compileSdkVersion config["compile_sdk"]
defaultConfig {
minSdkVersion config["min_sdk"]
targetSdkVersion config["target_sdk"]
testInstrumentationRunner config["test_runner"]
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
plugins {
id "com.android.library"
id "kotlin-android"
}
dependencies {