mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-10 17:30:11 +01:00
3de2d0f56f
!707
fdroiddata#6216
The se.manyver app is licensed MPL, the files came from:
81d247a6cd
65 lines
2.0 KiB
Groovy
65 lines
2.0 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
minSdkVersion = 21
|
|
targetSdkVersion = 26
|
|
targetSdkVersionForGooglePlay = 28
|
|
compileSdkVersion = 28
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:3.4.2")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
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")
|
|
}
|
|
maven {
|
|
url 'https://maven.google.com'
|
|
}
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
subprojects { subproject ->
|
|
afterEvaluate {
|
|
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
|
|
android {
|
|
variantFilter { variant ->
|
|
def names = variant.flavors*.name
|
|
if (names.contains("reactNative51")) setIgnore(true)
|
|
if (names.contains("reactNative55")) setIgnore(true)
|
|
if (names.contains("reactNative56")) setIgnore(true)
|
|
if (names.contains("reactNative57")) setIgnore(true)
|
|
if (names.contains("reactNative57_5")) setIgnore(true)
|
|
if (names.contains("reactNative57WixFork")) setIgnore(true)
|
|
if (names.contains("reactNative59")) setIgnore(true)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|