Skip to content

Commit

Permalink
Fix for version name (#212)
Browse files Browse the repository at this point in the history
* Remove scroll flags (#210)
* Fix/gradle properties (#211)
  • Loading branch information
vbuberen committed Jan 28, 2020
1 parent ab39615 commit 0bbba97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.parallel=true

VERSION_NAME=3.1.0
# 3*100*100 + 0*100 + 1 => 30001
VERSION_CODE=30100
VERSION_NAME=3.1.1
# 3*100*100 + 1*100 + 1 => 30101
VERSION_CODE=30101
GROUP=com.github.chuckerteam.chucker

POM_REPO_NAME=Chucker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways|snap"
app:popupTheme="@style/Chucker.Theme" >

<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/chucker_doub_grid"
style="@style/Chucker.TextAppearance.TransactionTitle"
tools:text="Title"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@

<ProgressBar
android:id="@+id/progress_loading_transaction"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:layout_gravity="center"
android:layout_margin="@dimen/chucker_doub_grid"
android:visibility="visible" />

Expand Down

0 comments on commit 0bbba97

Please sign in to comment.