Skip to content

Commit

Permalink
Lint cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhardol committed Jun 11, 2019
1 parent 5a26536 commit fc3a39c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/res/layout/account_row.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/account_list_icon_text"
android:textSize="20dp"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="#ffffffff"
android:layout_gravity="center"/>
Expand Down
3 changes: 2 additions & 1 deletion app/res/layout/history_row.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
android:id="@+id/history_list_emblem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="8dp" />
android:layout_marginRight="8dp"
android:contentDescription="@string/Sport"/>

<TextView
android:id="@+id/history_list_distance"
Expand Down
3 changes: 2 additions & 1 deletion app/res/layout/step_button.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="0dp" />
android:layout_marginRight="0dp"
android:contentDescription="@string/Edit_step" />

<TextView
android:id="@+id/step_goal_value"
Expand Down
3 changes: 2 additions & 1 deletion app/src/org/runnerup/export/SyncManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.support.v4.util.LongSparseArray;
import android.support.v7.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.ContentValues;
Expand Down Expand Up @@ -88,7 +89,7 @@ public class SyncManager {
private Activity mActivity = null;
private Context mContext = null;
private final Map<String, Synchronizer> synchronizers = new HashMap<>();
private final Map<Long, Synchronizer> synchronizersById = new HashMap<>();
private final LongSparseArray<Synchronizer> synchronizersById = new LongSparseArray<>();

private ProgressDialog mSpinner = null;

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
android.enableD8.desugaring=false
android.enableR8=false

0 comments on commit fc3a39c

Please sign in to comment.