1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
buildscript {
3
- ext. kotlin_version = ' 1.5.31'
3
+ ext. agpVersion = " 7.1.0-alpha13"
4
+ ext. kotlinVersion = ' 1.5.31'
5
+ ext. androidxCoreVersion = " 1.6.0"
6
+ ext. buildToolsVersion = " 31.0.0"
7
+ ext. androidxCompatVersion = " 1.3.1"
8
+ ext. coreVersion = " 1.4.1-alpha02"
9
+ ext. extJUnitVersion = " 1.1.4-alpha02"
10
+ ext. runnerVersion = " 1.4.1-alpha02"
11
+ ext. rulesVersion = " 1.4.1-alpha02"
12
+ ext. espressoVersion = " 3.5.0-alpha02"
13
+ ext. servicesVersion = " 1.4.1-alpha02"
14
+ ext. truthVersion = " 1.1.3"
15
+
4
16
repositories {
5
- maven {
6
- url " file:///Users/brettchabot/test-repos/m2repository"
7
- allowInsecureProtocol = true
8
- }
9
17
google()
10
18
mavenCentral()
11
19
}
12
20
dependencies {
13
- classpath " com.android.tools.build:gradle:7.1.0-alpha13"
14
- classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
15
- classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
21
+ classpath " com.android.tools.build:gradle:$agpVersion "
22
+ classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
16
23
17
24
// NOTE: Do not place your application dependencies here; they belong
18
25
// in the individual module build.gradle files
@@ -21,4 +28,4 @@ buildscript {
21
28
22
29
task clean (type : Delete ) {
23
30
delete rootProject. buildDir
24
- }
31
+ }
0 commit comments