1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/android/build.gradle

55 lines
1.3 KiB
Groovy
Raw Normal View History

2017-05-06 16:37:28 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-10-02 20:57:31 +02:00
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 16
compileSdkVersion = 27
targetSdkVersion = 26
supportLibVersion = "27.1.1"
}
2017-05-06 16:37:28 +02:00
repositories {
jcenter()
2018-10-02 20:57:31 +02:00
google()
2017-05-06 16:37:28 +02:00
}
dependencies {
2018-10-02 20:57:31 +02:00
classpath 'com.android.tools.build:gradle:3.1.4'
2017-05-06 16:37:28 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2018-06-10 16:18:07 +02:00
maven {
url "https://maven.google.com"
}
2017-05-06 16:37:28 +02:00
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
2018-10-02 20:57:31 +02:00
jcenter() // Was added by me - still needed?
google()
2017-05-06 16:37:28 +02:00
}
}
2018-10-02 20:57:31 +02:00
2018-10-02 19:10:37 +02:00
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 26
buildToolsVersion "27.0.3"
}
}
}
}
2018-10-02 20:57:31 +02:00
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}