Skip to content

Commit

Permalink
Fixed intro issue by upgrade materialintro library to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
brodeurlv committed Mar 27, 2019
1 parent e733850 commit 2e02900
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ dependencies {
implementation 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
implementation 'com.ogaclejapan.smarttablayout:utils-v4:1.6.1@aar'
implementation 'com.github.lzyzsd:circleprogress:1.2.1'
implementation 'com.heinrichreimersoftware:material-intro:1.5.8'
implementation 'com.heinrichreimersoftware:material-intro:1.6'
implementation 'com.mikhaellopez:circularimageview:3.0.2'
//compile "com.google.firebase:firebase-core:15.0.2"
//compile "com.google.firebase:firebase-crash:15.0.2"
Expand Down
15 changes: 8 additions & 7 deletions app/src/main/res/layout/introfragment_newprofile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
android:inputType="text"
android:singleLine="true"
android:textColor="@android:color/black"
android:textColorHint="@android:color/darker_gray" />
android:textColorHint="@android:color/darker_gray"
android:importantForAutofill="no" />


</android.support.design.widget.TextInputLayout>
Expand Down Expand Up @@ -123,8 +124,7 @@
android:id="@+id/signup_input_layout_name2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
tools:ignore="ObsoleteLayoutParam">
android:layout_marginTop="5dp">

<EditText
android:id="@+id/profileBirthday"
Expand All @@ -134,16 +134,16 @@
android:inputType="date"
android:singleLine="true"
android:textColor="@android:color/black"
android:textColorHint="@android:color/darker_gray" />
android:textColorHint="@android:color/darker_gray"
android:importantForAutofill="no"/>
</android.support.design.widget.TextInputLayout>


<android.support.design.widget.TextInputLayout
android:id="@+id/signup_input_layout_name3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
tools:ignore="ObsoleteLayoutParam">
android:layout_marginTop="5dp">

<EditText
android:id="@+id/profileSize"
Expand All @@ -153,7 +153,8 @@
android:inputType="numberSigned"
android:singleLine="true"
android:textColor="@android:color/black"
android:textColorHint="@android:color/darker_gray" />
android:textColorHint="@android:color/darker_gray"
android:importantForAutofill="no"/>


</android.support.design.widget.TextInputLayout>
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/res/values/about.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string name="app_version" translatable="false">0.17</string>
<string name="app_version" translatable="false">0.17.1</string>
<string name="database_version_label" translatable="false">Database version: </string>
<string name="author_label" translatable="false">Author: </string>
<string name="author" translatable="false">Charles Combes</string>
Expand All @@ -10,6 +10,8 @@
<string name="email_url" translatable="false">[email protected]</string>
<string name="revision_history_label" translatable="false">Revision History: </string>
<string name="revision_history" translatable="false">\n
v0.17.1: 27/03/2019\n
\t - Bug : Fixed intro profil creation\n
v0.17: 18/03/2019\n
\t - Enhancement : Optimized start-up and update UI\n
\t - Enhancement : Added fat, muscles and water and BMI to weight tracking\n
Expand Down

0 comments on commit 2e02900

Please sign in to comment.