1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-30 23:44:55 +02:00
Files
joplin/ReactNativeClient/android/build.gradle

38 lines
1002 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 {
2018-10-02 18:57:31 +00:00
ext {
2020-10-13 15:05:17 +01:00
buildToolsVersion = "29.0.2"
2018-10-02 18:57:31 +00:00
minSdkVersion = 16
2020-10-13 15:05:17 +01:00
compileSdkVersion = 29
targetSdkVersion = 29
2018-10-02 18:57:31 +00:00
}
2017-05-06 15:37:28 +01:00
repositories {
2018-10-02 18:57:31 +00:00
google()
2020-10-13 15:05:17 +01:00
jcenter()
2017-05-06 15:37:28 +01:00
}
dependencies {
2020-10-13 15:05:17 +01:00
classpath("com.android.tools.build:gradle:3.5.3")
2017-05-06 15:37:28 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
2020-02-09 14:51:12 +00:00
url("$rootDir/../node_modules/react-native/android")
2017-05-06 15:37:28 +01:00
}
maven {
2020-02-09 14:51:12 +00:00
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
2020-10-13 15:05:17 +01:00
2020-02-09 14:51:12 +00:00
google()
jcenter()
2020-10-13 15:05:17 +01:00
maven { url 'https://www.jitpack.io' }
2017-05-06 15:37:28 +01:00
}
}