Skip to content

Commit

Permalink
Suppress ExpiredTargetSdkVersion lint error (temp)
Browse files Browse the repository at this point in the history
The Play Store requires app to target sdk 26 at minimum. This is causing
a lint error that makes Travis fail. We're not ready to target sdk 26
yet (it requires some changes with the SYSTEM_OVERLAY window type), and
Red Moon's Play Store listing has some issues anyway, so it's ok to
suppress the error for now; it doesn't affect F-Droid.
  • Loading branch information
smichel17 committed Feb 3, 2019
1 parent 715c800 commit f698b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ android {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'NewApi'
disable 'NewApi','ExpiredTargetSdkVersion'
}
}

Expand Down

0 comments on commit f698b0c

Please sign in to comment.