Add dev flavor. Bugfix in reader

This commit is contained in:
len 2017-03-08 18:56:27 +01:00
parent 6020cd011d
commit c437f1473c
2 changed files with 8 additions and 2 deletions

View file

@ -44,6 +44,7 @@ android {
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
buildConfigField "String", "BUILD_TIME", "\"${getBuildTime()}\""
buildConfigField "boolean", "INCLUDE_UPDATER", "false"
vectorDrawables.useSupportLibrary = true
@ -70,9 +71,11 @@ android {
standard {
buildConfigField "boolean", "INCLUDE_UPDATER", "true"
}
fdroid {
buildConfigField "boolean", "INCLUDE_UPDATER", "false"
}
dev {
minSdkVersion 21
resConfigs "en", "xxhdpi"
}
}

View file

@ -230,7 +230,10 @@ abstract class PagerReader : BaseReader() {
*/
protected fun setPagesOnAdapter() {
if (pages.isNotEmpty()) {
// Prevent a wrong active page when changing chapters with the navigation buttons.
val currPage = currentPage
adapter.pages = pages
currentPage = currPage
if (currentPage == pager.currentItem) {
onPageChanged(currentPage)
} else {