You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
5.3 KiB
136 lines
5.3 KiB
/*
|
|
* 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
|
|
*
|
|
* https://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.
|
|
*/
|
|
import com.google.samples.apps.nowinandroid.NiaBuildType
|
|
|
|
plugins {
|
|
alias(libs.plugins.nowinandroid.android.application)
|
|
alias(libs.plugins.nowinandroid.android.application.compose)
|
|
alias(libs.plugins.nowinandroid.android.application.flavors)
|
|
alias(libs.plugins.nowinandroid.android.application.jacoco)
|
|
alias(libs.plugins.nowinandroid.android.hilt)
|
|
id("jacoco")
|
|
alias(libs.plugins.nowinandroid.android.application.firebase)
|
|
id("com.google.android.gms.oss-licenses-plugin")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
applicationId = "com.google.samples.apps.nowinandroid"
|
|
versionCode = 8
|
|
versionName = "0.1.2" // X.Y.Z; X = Major, Y = minor, Z = Patch level
|
|
|
|
// Custom test runner to set up Hilt dependency graph
|
|
testInstrumentationRunner = "com.google.samples.apps.nowinandroid.core.testing.NiaTestRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix = NiaBuildType.DEBUG.applicationIdSuffix
|
|
}
|
|
val release by getting {
|
|
isMinifyEnabled = true
|
|
applicationIdSuffix = NiaBuildType.RELEASE.applicationIdSuffix
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
|
|
// To publish on the Play store a private signing key is required, but to allow anyone
|
|
// who clones the code to sign and run the release variant, use the debug signing key.
|
|
// TODO: Abstract the signing configuration to a separate file to avoid hardcoding this.
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
}
|
|
create("benchmark") {
|
|
// Enable all the optimizations from release build through initWith(release).
|
|
initWith(release)
|
|
matchingFallbacks.add("release")
|
|
// Debug key signing is available to everyone.
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
// Only use benchmark proguard rules
|
|
proguardFiles("benchmark-rules.pro")
|
|
isMinifyEnabled = true
|
|
applicationIdSuffix = NiaBuildType.BENCHMARK.applicationIdSuffix
|
|
}
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes.add("/META-INF/{AL2.0,LGPL2.1}")
|
|
}
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
isIncludeAndroidResources = true
|
|
}
|
|
}
|
|
namespace = "com.google.samples.apps.nowinandroid"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":feature:interests"))
|
|
implementation(project(":feature:foryou"))
|
|
implementation(project(":feature:bookmarks"))
|
|
implementation(project(":feature:topic"))
|
|
implementation(project(":feature:search"))
|
|
implementation(project(":feature:settings"))
|
|
|
|
implementation(project(":core:common"))
|
|
implementation(project(":core:ui"))
|
|
implementation(project(":core:designsystem"))
|
|
implementation(project(":core:data"))
|
|
implementation(project(":core:model"))
|
|
implementation(project(":core:analytics"))
|
|
|
|
implementation(project(":sync:work"))
|
|
|
|
androidTestImplementation(project(":core:testing"))
|
|
androidTestImplementation(project(":core:datastore-test"))
|
|
androidTestImplementation(project(":core:data-test"))
|
|
androidTestImplementation(project(":core:network"))
|
|
androidTestImplementation(libs.androidx.navigation.testing)
|
|
androidTestImplementation(libs.accompanist.testharness)
|
|
androidTestImplementation(kotlin("test"))
|
|
debugImplementation(libs.androidx.compose.ui.testManifest)
|
|
debugImplementation(project(":ui-test-hilt-manifest"))
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.core.splashscreen)
|
|
implementation(libs.androidx.compose.runtime)
|
|
implementation(libs.androidx.lifecycle.runtimeCompose)
|
|
implementation(libs.androidx.compose.runtime.tracing)
|
|
implementation(libs.androidx.compose.material3.windowSizeClass)
|
|
implementation(libs.androidx.hilt.navigation.compose)
|
|
implementation(libs.androidx.navigation.compose)
|
|
implementation(libs.androidx.window.manager)
|
|
implementation(libs.androidx.profileinstaller)
|
|
implementation(libs.kotlinx.coroutines.guava)
|
|
implementation(libs.coil.kt)
|
|
|
|
// Core functions
|
|
testImplementation(project(":core:testing"))
|
|
testImplementation(project(":core:datastore-test"))
|
|
testImplementation(project(":core:data-test"))
|
|
testImplementation(project(":core:network"))
|
|
testImplementation(libs.androidx.navigation.testing)
|
|
testImplementation(libs.accompanist.testharness)
|
|
testImplementation(libs.work.testing)
|
|
testImplementation(kotlin("test"))
|
|
kaptTest(libs.hilt.compiler)
|
|
|
|
}
|