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.
41 lines
937 B
41 lines
937 B
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(path: ':connectedapps')
|
|
implementation project(path: ':connectedapps-annotations')
|
|
implementation project(path: ':connectedapps-processor')
|
|
annotationProcessor project(path: ':connectedapps-processor')
|
|
}
|
|
|
|
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 = [file('../src/main/java')]
|
|
java.includes = [
|
|
"com/google/android/enterprise/connectedapps/testapp/crossuser/*.java"
|
|
]
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
}
|
|
}
|
|
}
|