forked from PaycomUZ/AndroidSDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (35 loc) · 905 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
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven {url "https://jitpack.io"}
maven {url 'https://maven.fabric.io/public'}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {url "https://jitpack.io"}
maven {url 'https://maven.fabric.io/public'}
}
project.ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
targetSdkVersion = 28
compileSdkVersion = 28
supportVersion = "28.0.0"
versionCode = 1
versionName = "1.0"
}
}