forked from cliqz-oss/browser-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
62 lines (58 loc) · 1.5 KB
/
build.gradle
File metadata and controls
62 lines (58 loc) · 1.5 KB
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
53
54
55
56
57
58
59
60
61
62
buildscript {
repositories {
jcenter()
google()
maven {
url 'https://jitpack.io'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.1'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.github.cliqz-oss:minibloomfilter:1.0'
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
}
}
ext {
compileSdkVersion = 27
buildToolsVersion = "26.0.2"
}
subprojects { subproject ->
afterEvaluate{
if((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
}
}
}
}
allprojects {
buildscript {
repositories {
google()
}
}
repositories {
jcenter()
google()
maven {
url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2'
}
maven {
url 'https://jitpack.io'
}
maven {
url "http://dl.bintray.com/cliqz/cliqz-oss"
}
maven {
url "${rootProject.projectDir}/node_modules/react-native/android"
}
}
configurations.all {
resolutionStrategy {
force 'com.facebook.react:react-native:0.51.0'
}
}
}