-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.gradle
41 lines (38 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
buildscript {
ext.kotlin_version = '1.1.3-2'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// ...
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://maven.google.com" }
google()
}
}
ext {
minSdkVersion = 15
//minSdkVersion = 22
//minSdkVersionDev = 22
//minSdkVersionMain = 15
targetSdkVersion = 26
buildToolsVersion = '26.0.1'
//Please use the new naming system stated here:
//Version naming system: major.minor[.revision[.build[-channel[.release]]]]
versionNameDev = '4.4.1.0-dev.01'
versionNameMain = '4.4.0.25-alpha.01'
//versionCode_lite = 98
//versionCode_plus = 120
versionCode_dev = 132
versionCode_main = 125
}