1/*
2 * Copyright 2023 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17plugins {
18    id("AndroidXPlugin")
19    id("com.android.application")
20    id("org.jetbrains.kotlin.android")
21}
22
23android {
24    compileSdk = 35
25    defaultConfig {
26        minSdk = 28
27    }
28
29    buildTypes {
30        release {
31            minifyEnabled = true
32            shrinkResources = true
33            proguardFiles getDefaultProguardFile("proguard-android-optimize.txt")
34        }
35    }
36    namespace = "androidx.window.integration.macrobenchmark.target"
37}
38
39dependencies {
40    implementation("androidx.core:core-ktx")
41    implementation("androidx.startup:startup-runtime:1.1.1")
42    implementation(libs.constraintLayout)
43    implementation(libs.kotlinStdlib)
44    implementation(libs.material)
45    implementation("androidx.activity:activity:1.10.1")
46    implementation(project(":profileinstaller:profileinstaller"))
47    implementation(project(":window:window-java"))
48}
49