-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 813 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 813 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
29
/** buildscript{} section below is still required for AGCP plugin */
//https://stackoverflow.com/questions/71121109/com-huawei-agconnect-plugin-not-found
buildscript {
repositories {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
}
}
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
id "com.huawei.agconnect.agcp" version "1.9.1.301" apply false
}
allprojects {
project.ext.compilesdk = 34
project.ext.targetsdk = 34
project.ext.minsdk = 26
project.ext.ver = [:]
ver.appcompat = "1.6.1"
ver.corektx = "1.12.0"
ver.material = "1.10.0"
ver.constraintlayout = "2.1.4"
}