mirror of https://github.com/laurent22/joplin.git
38 lines
903 B
Groovy
38 lines
903 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "35.0.0"
|
|
minSdkVersion = 24
|
|
|
|
compileSdkVersion = 35
|
|
targetSdkVersion = 35
|
|
|
|
ndkVersion = "27.1.12297006"
|
|
kotlinVersion = "2.0.21"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle")
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
|
|
maven {
|
|
// expo-camera bundles a custom com.google.android:cameraview
|
|
url "$rootDir/../node_modules/expo-camera/android/maven"
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.facebook.react.rootproject"
|