-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (33 loc) · 961 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
subprojects { project ->
group = GROUP
version = VERSION_NAME
repositories {
mavenLocal()
jcenter()
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
}
ext {
minSdkVersion = 16
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.1'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
reactnative: 'com.facebook.react:react-native:0.13.0',
rxjava: 'io.reactivex:rxjava:1.0.14',
javapoet: 'com.squareup:javapoet:1.3.0',
autoservice: 'com.google.auto.service:auto-service:1.0-rc2',
autocommon: 'com.google.auto:auto-common:0.5',
retrofit: 'com.squareup.retrofit:retrofit:1.9.0'
]