1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00
fdroidserver/tests/source-files/se.manyver/android/build.gradle
Hans-Christoph Steiner 3de2d0f56f add basic test suite for gradlew-fdroid
!707
fdroiddata#6216

The se.manyver app is licensed MPL, the files came from:
81d247a6cd
2020-02-13 22:32:51 +01:00

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)
}
}
}
}
}