joplin/ReactNativeClient/android/build.gradle

43 lines
1.1 KiB
Groovy
Raw Normal View History

2017-05-06 14:37:28 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-10-02 18:57:31 +00:00
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 16
compileSdkVersion = 27
targetSdkVersion = 26
supportLibVersion = "27.1.1"
}
2017-05-06 14:37:28 +00:00
repositories {
jcenter()
2018-10-02 18:57:31 +00:00
google()
2017-05-06 14:37:28 +00:00
}
dependencies {
2018-10-02 18:57:31 +00:00
classpath 'com.android.tools.build:gradle:3.1.4'
2017-05-06 14:37:28 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2018-06-10 14:18:07 +00:00
maven {
url "https://maven.google.com"
}
2017-05-06 14:37:28 +00: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 18:57:31 +00:00
jcenter() // Was added by me - still needed?
google()
2017-05-06 14:37:28 +00:00
}
}
2018-10-02 18:57:31 +00:00
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}