-
Notifications
You must be signed in to change notification settings - Fork 610
/
Copy pathbuild.gradle
executable file
·64 lines (49 loc) · 1.68 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
plugins {
id 'com.android.library'
id 'maven-publish'
id 'signing'
id 'kotlin-android'
}
android {
compileSdkVersion Integer.parseInt(project.ANDROID_COMPILE_SDK_VERSION)
defaultConfig {
minSdkVersion Integer.parseInt(project.MIN_SDK)
}
buildTypes {
debug {
minifyEnabled project.hasProperty('minifyDebug') && minifyDebug
proguardFiles getDefaultProguardFile('proguard-android.txt'), '../chat-sdk-proguard-rules.pro', 'proguard-rules.pro'
}
release {
minifyEnabled project.hasProperty('minifyRelease') && minifyRelease
proguardFiles getDefaultProguardFile('proguard-android.txt'), '../chat-sdk-proguard-rules.pro', 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
lint {
abortOnError false
checkReleaseBuilds false
lintConfig file('lint.xml')
}
namespace 'sdk.chat.message.sticker'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':chat-sdk-core')
implementation project(':chat-sdk-core-ui')
implementation project(":sdk-guru-licensing")
implementation "com.googlecode.plist:dd-plist:1.3"
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
}
ext {
libraryName = 'StickerMessagePro'
artifact = 'pro-message-sticker'
libraryDescription = 'Sticker Message Pro Module'
}
if (project.hasProperty("mavenPublish") && mavenPublish) {
apply from: '../bintray.gradle'
}