-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (39 loc) · 1.3 KB
/
build.gradle
File metadata and controls
42 lines (39 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "35.0.0"
minSdkVersion = project.hasProperty('minSdkVersion') ? project.getProperty('minSdkVersion') : 24
compileSdkVersion = 35
targetSdkVersion = 35
ndkVersion = "26.1.10909125"
bitriseNdkPath = "/usr/local/share/android-sdk/ndk-bundle"
kotlin_version = "1.9.25"
kotlinVersion = "$kotlin_version"
supportLibVersion = "28.0.0"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("io.sentry:sentry-android-gradle-plugin:4.2.0")
classpath("com.google.gms:google-services:4.4.2")
classpath('org.jetbrains.kotlin:kotlin-gradle-plugin')
}
allprojects {
repositories {
maven {
url("$rootDir/../node_modules/detox/Detox-android")
}
// Notifee repository
maven {
url(new File(['node', '--print', "require.resolve('@notifee/react-native/package.json')"].execute(null, rootDir).text.trim(), '../android/libs'))
}
maven { url "https://jitpack.io" }
maven { url "file://${rootDir}/libs" }
maven { url "https://cdn.veriff.me/android/" }
}
}
}