/* * Copyright (C) 2019 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } android { namespace 'com.android.car.appgrid.test' compileSdk gradle.ext.aaosTargetSDK defaultConfig { applicationId "com.android.car.appgrid.test" minSdk gradle.ext.aaosLatestSDK targetSdk gradle.ext.aaosLatestSDK versionCode gradle.ext.getVersionCode() versionName gradle.ext.getVersionName() testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } signingConfigs { debug { storeFile file(gradle.ext.debugCertPath) storePassword 'carapps' keyAlias 'carapps' keyPassword 'carapps' } } buildTypes { debug { testCoverageEnabled = true signingConfig signingConfigs.debug minifyEnabled false shrinkResources false } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation project(":libs:appgrid:lib") implementation 'androidx.appcompat:appcompat:1.6.1' }