-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (36 loc) · 990 Bytes
/
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
buildscript {
ext.kotlinVersion = '1.3.41'
ext.abtVersion = '3.5.3'
ext.kotlin = 'org.jetbrains.kotlin:kotlin'
}
buildscript {
repositories { jcenter(); google() }
dependencies {
classpath("com.android.tools.build:gradle:$abtVersion")
classpath("$kotlin-gradle-plugin:$kotlinVersion")
classpath('com.github.dcendents:android-maven-gradle-plugin:2.1')
}
}
allprojects {
repositories { jcenter(); google() }
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android { compileSdkVersion 28
defaultConfig {
applicationId('org.duangsuse.changeattr')
minSdkVersion(14); targetSdkVersion(26)
versionCode(1); versionName("1.0")
ndk { abiFilters('armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64') }
}
buildTypes {
release {
minifyEnabled(true)
def defaultProguard = getDefaultProguardFile('proguard-android.txt')
proguardFiles(defaultProguard)
}
}
}
dependencies {
implementation(project(':e2im2'))
}