-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
72 lines (61 loc) · 1.35 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
70
71
72
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.3.2"
}
}
plugins {
id "maven-publish"
id "com.github.technoir42.aar-publish" version "1.0.0"
id "com.jfrog.bintray" version "1.8.4"
}
apply plugin: "com.android.library"
group = "com.sch.stetho"
version = "1.0.0"
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
}
lintOptions {
warningsAsErrors true
informational "GradleDependency"
}
libraryVariants.all {
it.generateBuildConfigProvider.configure { it.enabled = false }
}
}
repositories {
google()
jcenter()
}
dependencies {
implementation "net.zetetic:android-database-sqlcipher:3.5.9"
implementation "com.facebook.stetho:stetho:1.5.0"
}
publishing {
publications {
maven(MavenPublication) {
from components.android
}
}
}
bintray {
user = findProperty("BINTRAY_USER")
key = findProperty("BINTRAY_KEY")
publish = true
pkg {
repo = "maven"
name = "stetho-sqlcipher"
licenses = ["Apache-2.0"]
vcsUrl = "https://github.com/technoir42/stetho-sqlcipher.git"
version {
name = project.version
}
publications = ["maven"]
}
}