2017-04-21 01:23:59 +09:00
|
|
|
buildscript {
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2018-09-12 14:55:15 +09:00
|
|
|
ext.min_sdk_version = 21
|
2020-09-09 05:17:32 +09:00
|
|
|
ext.target_sdk_version = 30
|
Android Studio 4.0.0, Android gradple plugin 4.0.1, Gradle 6.1.1, kotlin 1.4.0, espresso-core:3.3.0-rc03, androidx.test:runner:1.3.0-rc03, androidx.appcompat 1.2.0, androidx.core-ktx 1.3.1, androidx.drawerlayout 1.1.0, androidx.preference 1.1.1, com.google.android.material 1.2.0, firebase-messaging 20.2.4, com.google.android:flexbox 2.0.1, junit 4.13
2020-08-23 07:15:27 +09:00
|
|
|
ext.appcompat_version='1.2.0'
|
2018-09-27 23:21:37 +09:00
|
|
|
|
2020-12-09 03:07:31 +09:00
|
|
|
ext.kotlin_version = '1.4.21'
|
2020-12-06 06:34:50 +09:00
|
|
|
ext.kotlinx_coroutines_version = '1.4.2'
|
2018-12-01 08:02:18 +09:00
|
|
|
ext.anko_version='0.10.8'
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2020-10-24 12:14:53 +09:00
|
|
|
ext.junit_version='4.13.1'
|
Android Studio 4.0.0, Android gradple plugin 4.0.1, Gradle 6.1.1, kotlin 1.4.0, espresso-core:3.3.0-rc03, androidx.test:runner:1.3.0-rc03, androidx.appcompat 1.2.0, androidx.core-ktx 1.3.1, androidx.drawerlayout 1.1.0, androidx.preference 1.1.1, com.google.android.material 1.2.0, firebase-messaging 20.2.4, com.google.android:flexbox 2.0.1, junit 4.13
2020-08-23 07:15:27 +09:00
|
|
|
|
2017-04-21 01:23:59 +09:00
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
google()
|
2017-04-21 01:23:59 +09:00
|
|
|
jcenter()
|
2017-04-23 14:42:09 +09:00
|
|
|
mavenCentral()
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
2018-09-12 14:55:15 +09:00
|
|
|
|
2017-04-21 01:23:59 +09:00
|
|
|
dependencies {
|
2020-11-11 15:55:28 +09:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
2020-10-24 12:14:53 +09:00
|
|
|
classpath 'com.google.gms:google-services:4.3.4'
|
2018-05-06 17:09:18 +09:00
|
|
|
|
2017-11-04 23:51:15 +09:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-10-07 05:46:56 +09:00
|
|
|
|
2020-10-24 12:14:53 +09:00
|
|
|
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.6'
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
google()
|
2017-04-21 01:23:59 +09:00
|
|
|
jcenter()
|
2017-08-24 20:44:06 +09:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|