From 0b1c2b8cea38710b703c49aa37eb55cbc8ab9259 Mon Sep 17 00:00:00 2001 From: hani-28 <28.hani@gmail.com> Date: Tue, 15 Feb 2022 21:52:15 -0500 Subject: [PATCH] Fixed an error in Qibla implementation --- app/build.gradle | 4 ++-- .../com/HMSolutions/thikrallah/Fragments/QiblaFragment.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index eecb4212..e9f9ddc6 100755 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,8 +30,8 @@ android { applicationId "com.HMSolutions.thikrallah" minSdkVersion 21 targetSdkVersion 31 - versionCode 121 - versionName "6.1.0" + versionCode 122 + versionName "6.1.1" } lintOptions { disable 'MissingTranslation' diff --git a/app/src/main/java/com/HMSolutions/thikrallah/Fragments/QiblaFragment.java b/app/src/main/java/com/HMSolutions/thikrallah/Fragments/QiblaFragment.java index 2cbedf4c..6f8bd5b9 100644 --- a/app/src/main/java/com/HMSolutions/thikrallah/Fragments/QiblaFragment.java +++ b/app/src/main/java/com/HMSolutions/thikrallah/Fragments/QiblaFragment.java @@ -37,7 +37,7 @@ public class QiblaFragment extends Fragment implements SharedPreferences.OnShare private Compass compass; private ImageView arrowView; private ImageView dialView; - private TextView sotwLabel; // SOTW is for "side of the world" + // private TextView sotwLabel; // SOTW is for "side of the world" private Context mContext; private float currentAzimuth; private float currentQibla; @@ -182,7 +182,7 @@ private void adjustArrow(float azimuth) { } private void adjustSotwLabel(float azimuth) { - sotwLabel.setText(sotwFormatter.format(azimuth)); + //sotwLabel.setText(sotwFormatter.format(azimuth)); } @Override