| /** |
| * 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. |
| */ |
| |
| /* |
| * Copyright 2022 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("AndroidXPlugin") |
| id("com.android.application") |
| id("kotlin-android") |
| id("com.google.devtools.ksp") |
| id("com.google.dagger.hilt.android") |
| } |
| |
| android { |
| buildFeatures { |
| viewBinding = true |
| } |
| namespace = "androidx.bluetooth.integration.testapp" |
| } |
| |
| dependencies { |
| implementation(project(":bluetooth:bluetooth")) |
| |
| implementation(libs.kotlinStdlib) |
| implementation(libs.kotlinCoroutinesAndroid) |
| |
| implementation("androidx.activity:activity-ktx:1.8.0") |
| implementation("androidx.core:core-ktx:1.12.0") |
| implementation("androidx.fragment:fragment-ktx:1.6.2") |
| implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.6.2") |
| implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2") |
| implementation("androidx.navigation:navigation-fragment-ktx:2.7.5") |
| implementation("androidx.navigation:navigation-ui-ktx:2.7.5") |
| implementation("androidx.recyclerview:recyclerview:1.3.2") |
| implementation("androidx.viewpager2:viewpager2:1.0.0") |
| |
| implementation(libs.constraintLayout) |
| implementation(libs.material) |
| |
| implementation(libs.hiltAndroid) |
| ksp(libs.hiltCompiler) |
| } |