-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (49 loc) · 1.04 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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
}
}
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
android {
compileSdkVersion 34
defaultConfig {
minSdkVersion 26
compileSdkVersion 34
targetSdkVersion 34
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.github.HarshaR1642'
artifactId = 'ttlock-sdk'
version = '1.0.0'
artifact(file('ttlock-sdk-2.0.aar')) {
extension 'aar'
}
}
}
}
allprojects {
repositories {
google()
maven { url "https://jitpack.io" }
mavenCentral()
}
}