forked from eclipsesource/tabris-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (28 loc) · 772 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
buildscript {
ext {
playServicesVersion = '12.0.1'
kotlinVersion = '1.2.50'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
maven {
// provides tabris from directory repository
url new File(System.getenv('TABRIS_ANDROID_PLATFORM') +
'/bin/templates/project/m2repository').toURI().toURL().toString()
}
}
}
apply plugin: 'android-reporting'