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.
139 lines
4.9 KiB
139 lines
4.9 KiB
/*
|
|
* Copyright 2021 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.Flavor
|
|
import com.google.samples.apps.nowinandroid.FlavorDimension
|
|
|
|
plugins {
|
|
id("nowinandroid.android.application")
|
|
id("nowinandroid.android.application.compose")
|
|
id("nowinandroid.android.application.jacoco")
|
|
kotlin("kapt")
|
|
id("jacoco")
|
|
id("dagger.hilt.android.plugin")
|
|
id("nowinandroid.spotless")
|
|
id("nowinandroid.firebase-perf")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
applicationId = "com.google.samples.apps.nowinandroid"
|
|
versionCode = 1
|
|
versionName = "0.0.1" // 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 {
|
|
val debug by getting {
|
|
applicationIdSuffix = ".debug"
|
|
}
|
|
val release by getting {
|
|
isMinifyEnabled = true
|
|
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")
|
|
}
|
|
val benchmark by creating {
|
|
// 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")
|
|
// FIXME enabling minification breaks access to demo backend.
|
|
isMinifyEnabled = false
|
|
applicationIdSuffix = ".benchmark"
|
|
}
|
|
}
|
|
|
|
// @see Flavor for more details on the app product flavors.
|
|
flavorDimensions += FlavorDimension.contentType.name
|
|
productFlavors {
|
|
Flavor.values().forEach {
|
|
create(it.name) {
|
|
dimension = it.dimension.name
|
|
if (it.applicationIdSuffix != null) {
|
|
applicationIdSuffix = it.applicationIdSuffix
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
resources {
|
|
excludes.add("/META-INF/{AL2.0,LGPL2.1}")
|
|
}
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
isIncludeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":feature-author"))
|
|
implementation(project(":feature-interests"))
|
|
implementation(project(":feature-foryou"))
|
|
implementation(project(":feature-bookmarks"))
|
|
implementation(project(":feature-topic"))
|
|
|
|
implementation(project(":core-ui"))
|
|
implementation(project(":core-designsystem"))
|
|
implementation(project(":core-navigation"))
|
|
|
|
implementation(project(":sync"))
|
|
|
|
androidTestImplementation(project(":core-testing"))
|
|
androidTestImplementation(project(":core-datastore-test"))
|
|
androidTestImplementation(project(":core-data-test"))
|
|
androidTestImplementation(project(":core-network"))
|
|
androidTestImplementation(libs.androidx.navigation.testing)
|
|
debugImplementation(libs.androidx.compose.ui.testManifest)
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.core.splashscreen)
|
|
implementation(libs.androidx.compose.material3.windowSizeClass)
|
|
implementation(libs.androidx.window.manager)
|
|
implementation(libs.androidx.profileinstaller)
|
|
|
|
implementation(libs.coil.kt)
|
|
implementation(libs.coil.kt.svg)
|
|
|
|
implementation(libs.hilt.android)
|
|
kapt(libs.hilt.compiler)
|
|
kaptAndroidTest(libs.hilt.compiler)
|
|
|
|
// androidx.test is forcing JUnit, 4.12. This forces it to use 4.13
|
|
configurations.configureEach {
|
|
resolutionStrategy {
|
|
force(libs.junit4)
|
|
// Temporary workaround for https://issuetracker.google.com/174733673
|
|
force("org.objenesis:objenesis:2.6")
|
|
}
|
|
}
|
|
}
|