Skip to content

Releases: Roaim/KotlinPinBoard

Publish lib to jitpack

18 Aug 22:24
Compare
Choose a tag to compare

The root build.gradle should look like

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

and in the app module build.gradle add following

dependencies {
    implementation 'com.github.Roaim:KotlinPinBoard:v2.5'
}

Animation

18 Aug 21:36
077f4bb
Compare
Choose a tag to compare

SharedElementTransition added

Memory optimization

18 Aug 08:39
6f268ea
Compare
Choose a tag to compare
  • Reusing one livedata across the all viewholders to reduce huge memory consumption
  • Change unsplash api with lorem picsum api to check paging behavior

Initial release

13 Aug 14:33
Compare
Choose a tag to compare
Initial release Pre-release
Pre-release

Basic version with less error handling. No tests for app module. Less optimization. Less standard practice.