forked from osmandapp/OsmAnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (33 loc) · 942 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
buildscript {
ext.kotlin_version = '1.2.50'
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
//classpath 'com.android.tools.build:gradle:2.+'
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.github.ksoichiro:gradle-eclipse-aar-plugin:0.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'com.github.ksoichiro.eclipse.aar'
allprojects {
repositories {
ivy {
name = "OsmAndBinariesIvy"
url = "http://builder.osmand.net"
layout "pattern", {
artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
}
}
google()
mavenCentral()
jcenter()
maven {
url "https://jitpack.io"
}
}
}