1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-10 10:00:44 +09:00
anytype-kotlin/sample/build.gradle

66 lines
1.6 KiB
Groovy

plugins {
id "com.android.application"
id "kotlin-android"
id "kotlin-android-extensions"
id "kotlin-kapt"
}
android {
compileSdkVersion 33
buildToolsVersion "32.0.0"
defaultConfig {
applicationId "com.anytypeio.anytype.sample"
minSdkVersion 26
targetSdkVersion 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
}
dependencies {
implementation project(':core-utils')
implementation project(':core-ui')
implementation project(':presentation')
implementation libs.kotlin
implementation libs.appcompat
implementation libs.glide
implementation libs.coroutinesAndroid
implementation libs.constraintLayout
implementation libs.androidxCore
implementation libs.timber
implementation libs.fragment
implementation libs.design
implementation libs.pickT
//implementation 'com.github.gregcockroft:AndroidMath:ALPHA'
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation libs.robolectric
testImplementation libs.androidXTestCore
testImplementation libs.mockitoKotlin
}