forked from akexorcist/ScreenshotDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 1.23 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
45
46
47
buildscript {
project.ext {
kotlin_version = '1.4.32'
compileSdkVersion = 30
targetSdkVersion = 30
minSdkVersion = 16
versionName = '1.0.1'
versionCode = 10001
libraryName = 'Screenshot Detection'
libraryDescription = 'Screenshot Detection Library for Android'
groupId = 'com.akexorcist'
artifactId = 'screenshot-detection'
siteUrl = 'https://github.com/akexorcist/ScreenshotDetection'
gitUrl = 'https://github.com/akexorcist/ScreenshotDetection.git'
developerId = 'akexorcist'
developName = 'Somkiat Khitwongwattana'
developerEmail = '[email protected]'
licenseName = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$project.kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}