-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (40 loc) · 1.33 KB
/
build.gradle
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.0'
ext.build_gradle = '7.3.0'
ext.kotlin_gradle_plugin_version = '1.7.10'
ext.gradle_maven_publish_plugin = '0.19.0'
ext.java = '11'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$build_gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_gradle_plugin_version"
classpath "com.vanniktech:gradle-maven-publish-plugin:$gradle_maven_publish_plugin"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
targetSdkVersion = 33
minSdkVersion = 21
compileSdkVersion = targetSdkVersion
appCompatLibVersion = '1.5.1'
materialLibVersion = '1.6.1'
constraintLayoutVersion = '2.1.4'
junitVersion = '4.13.2'
extjunitVersion = '1.1.3'
espressoCoreVersion = '3.4.0'
gsonVersion = '2.9.0'
imageSupportVersion = '2.0.0'
demoVersionCode = 1
demoVersionName = '1.0.0'
demoPomUrl = 'https://github.com/airrobe/widget-sdk-android'
demoGithubRepo = 'airrobe/widget-sdk-android'
demoModuleName = 'AirRobeWidget'
demoModuleDesc = 'AirRobeWidget SDK Demo for Android.'
demoBintrayName = 'widget-sdk-android'
}