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

DROID-649 Tech | Enhancement | Get rid of dependencies.gradle (#2778)

This commit is contained in:
Mikhail 2022-12-25 20:53:47 +03:00 committed by GitHub
parent 184305bc2c
commit 802e686b0a
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 291 additions and 379 deletions

View file

@ -1,7 +1,9 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
plugins {
id "com.android.application"
id "kotlin-android"
id "kotlin-android-extensions"
id "kotlin-kapt"
}
android {
compileSdkVersion 33
@ -39,9 +41,6 @@ android {
dependencies {
def applicationDependencies = rootProject.ext.mainApplication
def unitTestDependencies = rootProject.ext.unitTesting
implementation project(':core-utils')
implementation project(':core-ui')
implementation project(':presentation')
@ -49,19 +48,19 @@ dependencies {
implementation libs.kotlin
implementation libs.appcompat
implementation libs.glide
implementation applicationDependencies.coroutinesAndroid
implementation applicationDependencies.constraintLayout
implementation libs.coroutinesAndroid
implementation libs.constraintLayout
implementation libs.androidxCore
implementation applicationDependencies.timber
implementation libs.timber
implementation libs.fragment
implementation libs.design
implementation applicationDependencies.pickT
implementation libs.pickT
//implementation 'com.github.gregcockroft:AndroidMath:ALPHA'
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation unitTestDependencies.robolectricLatest
testImplementation unitTestDependencies.androidXTestCore
testImplementation libs.robolectric
testImplementation libs.androidXTestCore
testImplementation libs.mockitoKotlin
}