mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-15 12:53:51 +00:00
25 lines
611 B
Groovy
25 lines
611 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$dexcount_version"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply from: "$mppAndroidProjectPresetPath"
|