Skip to content

Commit

Permalink
Fix gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
janheinrichmerker committed Mar 6, 2024
1 parent f01fd69 commit 44fbd5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
id("com.palantir.git-version")
}

val gitVersion: groovy.lang.Closure<String> by extra

android {
namespace = "com.heinrichreimersoftware.materialintro.demo"

Expand All @@ -17,7 +19,7 @@ android {
versionName = gitVersion()
}

lintOptions {
lint {
abortOnError = false
}

Expand Down
4 changes: 3 additions & 1 deletion library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id("com.palantir.git-version")
}

val gitVersion: groovy.lang.Closure<String> by extra

android {
namespace = "com.heinrichreimersoftware.materialintro"

Expand All @@ -15,7 +17,7 @@ android {
versionName = gitVersion()
}

lintOptions {
lint {
abortOnError = false
}

Expand Down

0 comments on commit 44fbd5f

Please sign in to comment.