Skip to content

Commit

Permalink
Fixed an error in Qibla implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
hani-28 committed Feb 16, 2022
1 parent 956f9cc commit 0b1c2b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0b1c2b8

Please sign in to comment.