Home

Awesome

Adhan Kotlin Multiplatform

badge-travis badge-cov

Adhan is a well tested and well documented library for calculating Islamic prayer times. Adhan is written using Kotlin Multiplatform and works on multiple platforms. It has a small method overhead, and has no external dependencies.

All astronomical calculations are high precision equations directly from the book “Astronomical Algorithms” by Jean Meeus. This book is recommended by the Astronomical Applications Department of the U.S. Naval Observatory and the Earth System Research Laboratory of the National Oceanic and Atmospheric Administration.

Implementations of Adhan in other languages can be found in the parent repo Adhan.

All primary development is for the Kotlin Multiplatform version. There is also a branch for a pure Java version of the library.

Usage

Gradle

implementation("com.batoulapps.adhan:adhan2:0.0.5")

Note - on Android, kotlinx.datetime uses java.time, which needs either a minimum api level of 26, or enabling of coreLibraryDesugaring as per the instructions here.

General Usage

To get prayer times, initialize a new PrayerTimes object passing in coordinates, date, and calculation parameters. The fields in this are kotlinx.datetime.Instant in UTC that can be converted to the wanted timezone.

val prayerTimes = PrayerTimes(coordinates, dateComponents, parameters)

Initialization parameters

Coordinates

Create a Coordinates object with the latitude and longitude for the location you want prayer times for.

val coordinates = Coordinates(35.78056, -78.6389)

Date

The date parameter passed in should be an instance of the DateComponents object. The year, month, and day values need to be populated. All other values will be ignored. The year, month and day values should be for the local date that you want prayer times for. These date values are expected to be for the Gregorian calendar. There's also a convenience method for converting a java.util.Date to DateComponents.

val date = DateComponents(2015, 11, 1)

Calculation parameters

The rest of the needed information is contained within the CalculationParameters class. Instead of manually initializing this class, it is recommended to use one of the pre-populated instances in the CalculationMethod class. You can then further customize the calculation parameters if needed.

val params = CalculationMethod.MUSLIM_WORLD_LEAGUE.parameters
  .copy(madhab = Madhab.HANAFI, prayerAdjustments = PrayerAdjustments(fajr = 2))
ParameterDescription
methodCalculationMethod name
fajrAngleAngle of the sun used to calculate Fajr
ishaAngleAngle of the sun used to calculate Isha
ishaIntervalMinutes after Maghrib (if set, the time for Isha will be Maghrib plus ishaInterval)
madhabValue from the Madhab object, used to calculate Asr
highLatitudeRuleValue from the HighLatitudeRule object, used to set a minimum time for Fajr and a max time for Isha
adjustmentsJavaScript object with custom prayer time adjustments in minutes for each prayer time

CalculationMethod

ValueDescription
MUSLIM_WORLD_LEAGUEMuslim World League. Fajr angle: 18, Isha angle: 17
EGYPTIANEgyptian General Authority of Survey. Fajr angle: 19.5, Isha angle: 17.5
KARACHIUniversity of Islamic Sciences, Karachi. Fajr angle: 18, Isha angle: 18
UMM_AL_QURAUmm al-Qura University, Makkah. Fajr angle: 18, Isha interval: 90. Note: you should add a +30 minute custom adjustment for Isha during Ramadan.
DUBAIMethod used in UAE. Fajr and Isha angles of 18.2 degrees.
QATARModified version of Umm al-Qura used in Qatar. Fajr angle: 18, Isha interval: 90.
KUWAITMethod used by the country of Kuwait. Fajr angle: 18, Isha angle: 17.5
MOONSIGHTING_COMMITTEEMoonsighting Committee. Fajr angle: 18, Isha angle: 18. Also uses seasonal adjustment values.
SINGAPOREMethod used by Singapore. Fajr angle: 20, Isha angle: 18.
NORTH_AMERICAReferred to as the ISNA method. This method is included for completeness but is not recommended. Fajr angle: 15, Isha angle: 15
KUWAITKuwait. Fajr angle: 18, Isha angle: 17.5
OTHERFajr angle: 0, Isha angle: 0. This is the default value for method when initializing a CalculationParameters object.

Madhab

ValueDescription
SHAFIEarlier Asr time
HANAFILater Asr time

HighLatitudeRule

ValueDescription
MIDDLE_OF_THE_NIGHTFajr will never be earlier than the middle of the night and Isha will never be later than the middle of the night
SEVENTH_OF_THE_NIGHTFajr will never be earlier than the beginning of the last seventh of the night and Isha will never be later than the end of the first seventh of the night
TWILIGHT_ANGLESimilar to SEVENTH_OF_THE_NIGHT, but instead of 1/7, the fraction of the night used is fajrAngle/60 and ishaAngle/60

Prayer Times

Once the PrayerTimes object has been initialized it will contain values for all five prayer times and the time for sunrise. The prayer times will be Date object instances initialized with UTC values. To display these times for the local timezone, a formatting and timezone conversion formatter should be used, for example java.text.SimpleDateFormat.

val formatter = SimpleDateFormat("hh:mm a")
formatter.setTimeZone(TimeZone.getTimeZone("America/New_York"))
formatter.format(Date(prayerTimes.fajr.toEpochMilliseconds()))

Qibla

As of version 1.1.0, this library provides a Qibla class for getting the qibla for a given location.

val coordinates = Coordinates(latitude, longitude)
val qibla = Qibla(coordinates)
// qibla.direction is the qibla direction

SunnahTimes

The library provides a SunnahTimes class.

val sunnahTimes = SunnahTimes(prayerTimes)
// sunnahTimes.middleOfTheNight is the midpoint between Maghrib and Fajr
// sunnahTimes.lastThirdOfTheNight is the last third between Maghrib and Fajr

Full Example

See an example in the samples module.