2022-03-30 15:57:04 +00:00
|
|
|
group 'com.cakewallet.cw_shared_external'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
2023-11-17 22:15:15 +00:00
|
|
|
ext.kotlin_version = '1.7.10'
|
2022-03-30 15:57:04 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-13 11:15:47 +00:00
|
|
|
mavenCentral()
|
2022-03-30 15:57:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-17 22:15:15 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
2022-03-30 15:57:04 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-13 11:15:47 +00:00
|
|
|
mavenCentral()
|
2022-03-30 15:57:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 30
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
}
|