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

View File

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