Downgrade minSdkVersion to 7 to run on Nook Simple Touch

Also, disable lint abortOnError so the build completes despite
getActionBar().setDisplayHomeAsUpEnabled(true) calls (properly protected
by conditions on the API version in the code).

fixes: wallabag/android-app#25

Signed-off-by: Olivier Mehani <shtrom@ssji.net>
This commit is contained in:
Olivier Mehani 2014-11-11 23:25:49 +11:00
parent 038139b5b4
commit a267585efa
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ android {
defaultConfig {
applicationId "fr.gaulupeau.apps.InThePoche"
minSdkVersion 8
minSdkVersion 7
targetSdkVersion 21
versionCode 10
versionName "1.7"
@ -17,6 +17,9 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {