Joshua Brown
Joshua Brown
Allow the Contract classes to specify classes to modify queries, deletes, inserts, and updates. A primary use case for this would be to allow contract classes to do joins, subselects,...
Add support for annotation-defined MIME types per http://developer.android.com/guide/topics/providers/content-provider-basics.html#MIMETypeReference
JCenter is being [sunset](https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/). Please upload artifacts to Maven Central by May 1st.
If either `duplicate-dependency-class` or `transitive-duplicate-dependency-class` are enabled my build crashes. Full log: ``` 6:09:59 PM: Executing task 'autoLintGradle --stacktrace'... Executing tasks: [autoLintGradle] in project C:\Users\keybo\StudioProjects\bluejay > Configure project :app buildNumber:...
Adds support for creating `Mp3File`s with `FileDescriptor`s. Fixes #171 Since `FileDescriptor`s contain less information than `File`s or `Path`s, some caveats are needed: - Saving new files from these `Mp3File`s is...
With Android's scoped storage changes, media is being pushed toward [ContentResolver.openFileDescriptor()](https://developer.android.com/reference/android/content/ContentResolver#openFileDescriptor(android.net.Uri,%20java.lang.String)) rather than using the file path. Some refactoring will be necessary, but a `SeekableByteChannel` would be available from `new...
It would be great if `TaggerString.from(String)` took a `CharSequence` instead of a `String` and thus could be used with `Resources.getText(int)`.