1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-26 18:58:21 +02:00

28 lines
711 B
Groovy
Raw Normal View History

2017-05-06 15:37:28 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2018-06-10 15:18:07 +01:00
maven {
url "https://maven.google.com"
}
2017-05-06 15:37:28 +01:00
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
2018-06-10 15:18:07 +01:00
jcenter()
2017-05-06 15:37:28 +01:00
}
}