rustdesk/flutter/android/build.gradle

33 lines
710 B
Groovy
Raw Normal View History

2020-11-06 13:04:04 +03:00
buildscript {
ext.kotlin_version = '1.7.10'
2020-11-06 13:04:04 +03:00
repositories {
google()
jcenter()
2022-02-08 17:44:32 +03:00
maven { url 'https://jitpack.io' }
2020-11-06 13:04:04 +03:00
}
dependencies {
2022-10-24 16:30:22 +03:00
classpath 'com.android.tools.build:gradle:7.0.0'
2022-04-20 09:53:12 +03:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.14'
2020-11-06 13:04:04 +03:00
}
}
allprojects {
repositories {
google()
jcenter()
2022-02-08 17:44:32 +03:00
maven { url 'https://jitpack.io' }
2020-11-06 13:04:04 +03:00
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}