mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
22 lines
707 B
Groovy
22 lines
707 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
def nav_version = "2.7.7"
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
|
|
}
|
|
}
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '8.4.0' apply false
|
|
id 'com.android.library' version '8.4.0' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
|
|
id 'com.google.gms.google-services' version '4.4.1' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|