Skip to content

Releases: baracudda/androidBits

v1.1.0

08 Feb 15:09
Compare
Choose a tag to compare

Publishing via GitHub:

Add the JitPack repository to your root build.gradle file, at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

then add the dependency to your app's build.gradle file:

	dependencies {
		implementation 'com.github.baracudda:androidBits:v1.1.0'
	}

v1.0.9

03 Feb 20:36
Compare
Choose a tag to compare

get compiling with gradle 6.5.

v1.0.8

06 May 18:56
Compare
Choose a tag to compare

Provider insert/update/delete observer URI (which uses :port to support it) does not play nice with Android 8 support libraries, revert/stick to api 24 for now.

v1.0.7

20 Apr 20:02
Compare
Choose a tag to compare

Fix SliderPreference widget so that opening the dialog, cancelling the change, then re-opening the dialog places the slider into the correct, reset, location.

v1.0.6

13 Feb 16:45
Compare
Choose a tag to compare

Updated to use Android v28 targets. Handled a warning in AuthPrefsChangedListener to fix a Lint warning of a possible memory leak.

v1.0.5

13 Nov 18:06
Compare
Choose a tag to compare

ThreadTaskDaemon option to execute the TaskToRun in a separate thread or not.

v1.0.4

12 Nov 22:35
5d739b4
Compare
Choose a tag to compare

added concurrent/TaskToRun and concurrent/ThreadTaskDaemon which allows for any AbstractQueue descendent to be used (mainly FIFO vs Priority).

v1.0.3

31 May 19:58
Compare
Choose a tag to compare

BroadwayAuthAccount.explicitlyRemoveAccount() added.

v1.0.2

08 Mar 16:18
Compare
Choose a tag to compare

BroadwayAuthAccount::canAutoAuth() added to detect missing user_tokens because under some circumstances, the account retained all other information except the user_token (which is stored where the "password" would be in Android's Account mechanism.