2021-07-17 00:37:47 +08:00
|
|
|
group 'com.example.flowy_infra_ui'
|
2021-07-17 10:07:58 +08:00
|
|
|
version '1.0'
|
2021-07-17 00:37:47 +08:00
|
|
|
|
|
|
|
buildscript {
|
2022-09-01 06:27:09 +02:00
|
|
|
ext.kotlin_version = '1.6.10'
|
2021-07-17 00:37:47 +08:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:4.1.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 30
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2021-07-18 00:23:14 +08:00
|
|
|
dependencies {
|
|
|
|
implementation "androidx.core:core:1.5.0-rc01"
|
2021-07-17 00:37:47 +08:00
|
|
|
}
|
|
|
|
}
|