This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
forked from pandulapeter/beagle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (65 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
buildscript {
ext {
libraryGroup = "com.github.pandulapeter.beagle"
libraryVersion = "2.6.6"
libraryMinimumSdkVersion = 16
libraryCompileSdkVersion = 31
libraryTargetSdkVersion = 31
libraryVersionCode = 1
coroutinesVersion = "1.5.2"
annotationsVersion = "1.3.0"
appCompatVersion = "1.4.0"
recyclerViewVersion = "1.2.1"
lifecycleVersion = "2.4.0"
materialVersion = "1.4.0"
constraintLayoutVersion = "2.1.2"
moshiVersion = "1.12.0"
okHttpVersion = "4.9.1"
ktorVersion = "1.6.5"
coilVersion = "2.0.0-alpha06"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
}
}
plugins {
id 'maven-publish'
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
publishing {
publications {
release(MavenPublication) {
pom {
name = 'Beagle'
description = 'A smart, reliable, and highly customizable debug menu library for Android apps that supports screen recording, network activity logging, and many other useful features.'
url = 'https://github.com/pandulapeter/beagle'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'pandulapeter'
name = 'Pandula Péter'
email = '[email protected]'
}
}
}
}
}
}