Skip to content

Commit

Permalink
fix(ci): Ignore missing translations
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Niedermann <[email protected]>
  • Loading branch information
stefan-niedermann committed Jan 19, 2024
1 parent 64a2b1f commit a769328
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exception/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

lintOptions {
disable 'MissingTranslation'
abortOnError false
}
}

afterEvaluate {
Expand Down
5 changes: 5 additions & 0 deletions sso-glide/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

lintOptions {
disable 'MissingTranslation'
abortOnError false
}
}

afterEvaluate {
Expand Down
5 changes: 5 additions & 0 deletions sso-url-helper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

lintOptions {
disable 'MissingTranslation'
abortOnError false
}
}

afterEvaluate {
Expand Down

0 comments on commit a769328

Please sign in to comment.