-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
52 lines (48 loc) · 1.42 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
//google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
maven { url 'https://maven.fabric.io/public' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:4.0.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.6.0'
classpath "io.realm:realm-gradle-plugin:3.5.0-SNAPSHOT"
//classpath 'io.fabric.tools:gradle:1.4.3'
}
}
ext {
compileSdkVersion = 25
buildToolsVersion = "25.0.0"
minSdkVersion = 16
targetSdkVersion = 24
supportLibrary = "26.1.0"
//butterknife = "8.8.1"
//applicationId = 'br.com.i9algo.autaz.pdv'
}
allprojects {
repositories {
//google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
maven { url 'https://maven.fabric.io/public' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}