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:
parent
184305bc2c
commit
802e686b0a
22 changed files with 291 additions and 379 deletions
30
build.gradle
30
build.gradle
|
@ -1,11 +1,6 @@
|
|||
import com.android.build.gradle.LibraryPlugin
|
||||
|
||||
apply from: './dependencies.gradle'
|
||||
|
||||
buildscript {
|
||||
ext.nav_version = '2.5.3'
|
||||
ext.dokka_version = '1.4.32'
|
||||
|
||||
ext.compile_sdk = 33
|
||||
ext.target_sdk = 31
|
||||
ext.min_sdk = 26
|
||||
|
@ -34,18 +29,19 @@ buildscript {
|
|||
}
|
||||
|
||||
}
|
||||
dependencies {
|
||||
def libs = project.extensions.getByName("libs") as org.gradle.accessors.dm.LibrariesForLibs
|
||||
classpath(libs.agp)
|
||||
classpath(libs.kgp)
|
||||
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
||||
classpath 'com.google.gms:google-services:4.3.14'
|
||||
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
|
||||
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.3'
|
||||
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
|
||||
classpath(libs.kserialization)
|
||||
classpath(libs.wire)
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.application) apply false
|
||||
alias(libs.plugins.library) apply false
|
||||
alias(libs.plugins.kotlinAndroid) apply false
|
||||
alias(libs.plugins.kserialization) apply false
|
||||
alias(libs.plugins.wire) apply false
|
||||
alias(libs.plugins.dokka) apply false
|
||||
alias(libs.plugins.firebaseDistribution) apply false
|
||||
alias(libs.plugins.crashlytics) apply false
|
||||
alias(libs.plugins.navigation) apply false
|
||||
alias(libs.plugins.gms) apply false
|
||||
}
|
||||
|
||||
def testDebugAll = tasks.create("testDebugAll")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue