diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 2f0253943..febbf2379 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -53,8 +53,6 @@ android {
// 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.named("debug").get()
- // Ensure Baseline Profile is fresh for release builds.
- baselineProfile.automaticGenerationDuringBuild = true
}
}
@@ -67,6 +65,9 @@ android {
namespace = "com.google.samples.apps.nowinandroid"
}
+// Ensure Baseline Profile is fresh for release builds.
+baselineProfile.automaticGenerationDuringBuild = true
+
dependencies {
implementation(projects.feature.interests.api)
implementation(projects.feature.interests.impl)
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index af3534342..7ac8359b4 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -36,7 +36,8 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
- android:theme="@style/Theme.Nia.Splash">
+ android:theme="@style/Theme.Nia.Splash"
+ tools:replace="android:theme">