All Versions
4
Latest Version
Avg Release Cycle
18 days
Latest Release
2137 days ago
Changelog History
Changelog History
-
v2.1.0 Changes
November 09, 2018- โ Added a new generic type object to AppData (variable called object). It is an additional variable that you can use for your own needs. If you need multiple variables, create a new wrapper object (new type) to hold those variables. Can be used with
getObject()
andsetObject(Object)
, where Object is any type.
- โ Added a new generic type object to AppData (variable called object). It is an additional variable that you can use for your own needs. If you need multiple variables, create a new wrapper object (new type) to hold those variables. Can be used with
-
v2.0.0 Changes
October 20, 2018NOTE: This version introduces backwards incompatible changes. Follow the steps below on how to solve issues.
- โ Added ability to filter by application permissions:
- All
getSome...
methods now require two additional parameters -String[]
(which contains permissions), andBoolean
(which tells whether to look for applications that contain at least one of the given permissions or not). - All listeners (except for
sortListener
) -activityListener
,appListener
,newActivityListener
,newAppListener
,uninstalledActivityListener
,uninstalledAppListener
- now receive two additional parameters (look the point above). If not applicable, then they are null and false. - AppData object now holds application permissions (if you are working with activity lists, this field still contains application permissions) that can be accessed with
getPermissions()
andsetPermissions(...)
. checkApplicationPermissions
method which allows checking whether a single AppData object contains (or does not contain) at least one of the given permissions.
- All
For more information read README.md.
- โ Added ability to filter by application permissions:
-
v1.1.0 Changes
October 04, 2018- Added
BY_APPNAME_IGNORE_CASE
for sorting. - โก๏ธ Updated dependencies
- Added
-
v1.0.0 Changes
September 15, 2018- ๐ Initial release