mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-17 22:14:24 +01:00
* Fix CI publish directories * Fix kotlin multiplatform build * Fix python ffi directory * Add swift PAT to release * Fix file copy * Fix mvn check * Test windows build (#290) * Add jitpack yml * Fix RN example android build
58 lines
1.7 KiB
Groovy
58 lines
1.7 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "33.0.0"
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 34
|
|
targetSdkVersion = 34
|
|
kotlin_version = "1.8.0"
|
|
|
|
ndkVersion = "25.1.8937393"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath('com.android.tools.build:gradle:7.4.2')
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("de.undercouch:gradle-download-task:5.0.1")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
exclusiveContent {
|
|
filter {
|
|
includeGroup "com.facebook.react"
|
|
}
|
|
forRepository {
|
|
maven {
|
|
url "$rootDir/../node_modules/react-native/android"
|
|
}
|
|
}
|
|
}
|
|
maven {
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
url("$rootDir/../node_modules/react-native/android")
|
|
}
|
|
maven {
|
|
// Android JSC is installed from npm
|
|
url("$rootDir/../node_modules/jsc-android/dist")
|
|
}
|
|
mavenCentral {
|
|
// We don't want to fetch react-native from Maven Central as there are
|
|
// older versions over there.
|
|
content {
|
|
excludeGroup "com.facebook.react"
|
|
}
|
|
}
|
|
google()
|
|
maven { url 'https://www.jitpack.io' }
|
|
}
|
|
}
|