Skip to content

Commit 751baa0

Browse files
committed
Add missing namespace to fix AGP 8.0.0 tests.
1 parent 6976138 commit 751baa0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if: failure()
8181
uses: actions/upload-artifact@v3
8282
with:
83-
name: build-outputs
83+
name: test-reports
8484
path: build/reports/tests/functionalTest
8585
retention-days: 3
8686

src/functionalTest/kotlin/io/github/reactivecircus/appversioning/fixtures/ProjectTemplates.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ abstract class AndroidProjectTemplate {
6161
${pluginExtension ?: ""}
6262
6363
android {
64+
namespace = "$DEFAULT_PACKAGE_NAME.$projectName"
6465
compileSdkVersion(33)
6566
defaultConfig {
6667
minSdkVersion(21)
@@ -91,6 +92,7 @@ abstract class AndroidProjectTemplate {
9192
${pluginExtension ?: ""}
9293
9394
android {
95+
namespace '$DEFAULT_PACKAGE_NAME.$projectName'
9496
compileSdkVersion 33
9597
defaultConfig {
9698
minSdkVersion 21

0 commit comments

Comments
 (0)