blob: 5f0599f4bfd6365cd79fe67fa45f451aa527e734 [file] [log] [blame]
/*
* Copyright 2024 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.
*/
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.application")
}
dependencies {
implementation("androidx.appcompat:appcompat:1.1.0")
implementation("androidx.core:core:1.1.0")
implementation("androidx.annotation:annotation:1.8.1")
implementation(project(":webkit:webkit"))
implementation(project(":javascriptengine:javascriptengine"))
implementation(libs.constraintLayout)
implementation(libs.guavaAndroid)
implementation(libs.espressoIdlingResource)
implementation(libs.espressoIdlingNet)
}
android {
defaultConfig {
minSdk 28
}
lintOptions {
disable "UnusedResources"
}
buildTypes {
release {
minifyEnabled true
}
}
namespace "com.example.androidx.javascriptengine"
}
androidx {
name = "JavaScriptEngine Test App"
type = LibraryType.TEST_APPLICATION
inceptionYear = "2024"
description = "The JavaScriptEngine AndroidX test application is a demonstration of the APIs provided in the androidx.javascriptengine library."
}