You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
660 B

buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application'
}
dependencies {
api project(path: ':connectedapps-testapp_additional_types')
api project(path: ':connectedapps-testapp_types')
}
android {
defaultConfig {
compileSdkVersion 30
minSdkVersion 26
}
testOptions.unitTests.includeAndroidResources = true
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
sourceSets {
main {
java.srcDirs = []
manifest.srcFile 'AndroidManifest.xml'
}
}
}