Skip to content

Commit

Permalink
Fix failing build task
Browse files Browse the repository at this point in the history
  • Loading branch information
maltaisn committed May 9, 2021
1 parent 97ce182 commit f3aeab9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ android {
shrinkResources true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
signingConfig signingConfigs.release
buildConfigField "boolean", "ENABLE_DEBUG_FEATURES", "false"
}
}

Expand Down Expand Up @@ -191,6 +192,11 @@ configurations.all {
}
}

tasks.getByName("build") {
// don't test, don't lint, don't run detekt for build task.
setDependsOn(getDependsOn().findAll { it != "check" })
}

allOpen {
annotation "com.maltaisn.notes.OpenClass"
}
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-nb/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
-->

<resources>
<resources xmlns:tools="http://schemas.android.com/tools">

<!-- Can be translated to provided a sensible localized name for a "Notes" app -->
<string name="app_name_short">Notater</string>
Expand Down Expand Up @@ -191,11 +191,11 @@
<string name="date_rel_today">I dag, %s</string>
<string name="date_rel_yesterday">I går, %s</string>
<string name="date_rel_tomorrow">I morgen, %s</string>
<plurals name="date_rel_days_past">
<plurals name="date_rel_days_past" tools:ignore="MissingQuantity">
<!-- used with quantity >= 2, format values: number of days, time -->
<item quantity="other">%d dager siden, %s</item>
</plurals>
<plurals name="date_rel_days_future">
<plurals name="date_rel_days_future" tools:ignore="MissingQuantity">
<!-- used with quantity >= 2, format values: number of days, time -->
<item quantity="other">Om %d dager, %s</item>
</plurals>
Expand Down

0 comments on commit f3aeab9

Please sign in to comment.