-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (32 loc) · 748 Bytes
/
build.gradle
File metadata and controls
35 lines (32 loc) · 748 Bytes
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
ext {
configuration = [
package : "com.malmstein.yahnac",
buildToolsVersion: "23.0.3",
minSdk : 16,
targetSdk : 23,
compileSdk : 23,
versionCode : 27,
versionName : "1.3.1"
]
}
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven {
url "http://dl.bintray.com/novoda/maven"
}
}
}