Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Releases: Karumi/Dexter

Release 2.2.2

16 Mar 09:39
Compare
Choose a tag to compare
  • Add fix for loopers that have been already initialized

Release 2.2.1

22 Jan 11:45
Compare
Choose a tag to compare
  • Add important fix for a race condition that was causing a NPE on some situations

Release 2.2.0

12 Jan 11:54
Compare
Choose a tag to compare

Add two new methods checkPermissionOnSameThread and checkPermissionsOnSameThread to the Dexter API to be able to request permissions and get the response in the same thread where the method was executed.

Release 2.1.4

17 Dec 10:19
Compare
Choose a tag to compare
  • Fix leaking inner activity

Release 2.1.3

15 Dec 17:31
Compare
Choose a tag to compare
  • Fix issue that was preventing users to make sequential checks (i.e. checking for permissions from the listeners)

Release 2.1.2

01 Dec 14:47
Compare
Choose a tag to compare
  • Add a semantic error when Dexter is used before initializing it
  • Retrieve application context to avoid the mistake of initializing Dexter with an activity context

Release 2.1.1

01 Dec 10:29
Compare
Choose a tag to compare
  • Fix issue where the listener provided in continuePendingRequestIfPossible was being stored even if it wasn't used

Release 2.1.0

30 Nov 10:45
Compare
Choose a tag to compare
  • Add continuePendingRequestIfPossible & continuePendingRequestsIfPossible to handle activity rotations while avoiding the need for library clients to store stuff in their side.
  • Add an isRequestOngoing method that returns true whether Dexter is requesting some permission.
  • Decreased minSdkVersion from 14 to 10
  • Minor fixes in both code & readme

Release 2.0.0

24 Nov 09:55
Compare
Choose a tag to compare
  • Now it's possible to know if a permission has been permanently denied by accessing PermissionDeniedResponse.isPermanentlyDenied
  • Allow ask for multiple permissions at once with Dexter.checkPermissions

Release 1.0.3

20 Nov 18:22
Compare
Choose a tag to compare
  • Allow library clients to ask again for permissions in their PermissionListener::onPermissionGranted or PermissionListener::onPermissionDenied implementations.