1 /**
2  * This is an adaptation of the build.gradle found in external/setupdesign. There are certain
3  * classes that must be modified in order to work with the sysui studio build.
4  */
<lambda>null5 plugins {
6     id("com.android.library")
7     id("org.jetbrains.kotlin.android")
8 }
9 
10 val top = extra["ANDROID_TOP"].toString()
11 
<lambda>null12 android {
13     namespace = "com.google.android.setupdesign.strings"
14     defaultConfig {
15         vectorDrawables.useSupportLibrary = true
16     }
17 
18     sourceSets {
19         sourceSets.getByName("main") {
20             manifest.srcFile("$top/external/setupdesign/strings/AndroidManifest.xml")
21             res.srcDirs(listOf("$top/external/setupdesign/strings/res"))
22         }
23     }
24     kotlinOptions {
25         jvmTarget = "17"
26     }
27 }
28 
<lambda>null29 dependencies {
30     implementation("androidx.core:core-ktx:+")
31 }
32