Skip to content

Commit

Permalink
Allow building with targetSdkVersion below Google Play requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
dozingcat committed Mar 22, 2020
1 parent 7b55338 commit a1939a7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 24

// Disable warning that SDK version is below Google Play requirements.
// Increasing the SDK version would require updating the support library,
// which would require increasing the min SDK version, which I don't want
// to do for the F-Droid release.
lintOptions {
checkReleaseBuilds false
}

defaultConfig {
applicationId "com.dozingcatsoftware.asciicam"
minSdkVersion 9
Expand Down

0 comments on commit a1939a7

Please sign in to comment.