-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (26 loc) · 794 Bytes
/
build.gradle
File metadata and controls
28 lines (26 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
build_tools_version = '33.0.2'
agp_version = '8.11.1'
kotlin_version = '1.9.22'
glmap_version = '1.12.0'
app_compat_version = '1.7.1'
multidex_version = '2.0.1'
material_version = '1.12.0'
gms_location_version = '21.3.0'
min_sdk_version = 21
sdk_version = 36
version_code = 11200
}
repositories {
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
}
}
plugins {
id 'com.android.application' version "$agp_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
}