hudomju / android-swipe-to-dismiss-undo

Android swipe-to-dismiss-undo library and sample code
MIT License
239 stars 84 forks source link

latest code not yet released to repository - missing setDismissDelay etc (which is in git hub code) #35

Open malcooke opened 8 years ago

malcooke commented 8 years ago

I see there have been a number of changes but last release to repository was over a year ago. DO you have plans to release further ?

Thanks for a good piece of work.

Malcolm

mayank26saxena commented 8 years ago

Have you been able to find any solution?

mayank26saxena commented 8 years ago

@malcooke have you been able to find any solution?

malcooke commented 8 years ago

Hi

No in the end I took a copy if the code from github and incorporated it directly into my project. I kept the original package structure so that if at some future point the repository gets updated I can then revert back to using the Gradle version.

I did try contacting the developer direct but had no response. On 30 Jun 2016 05:19, "Mayank Saxena" notifications@github.com wrote:

@malcooke https://github.com/malcooke have you been able to find any solution?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/hudomju/android-swipe-to-dismiss-undo/issues/35#issuecomment-229555782, or mute the thread https://github.com/notifications/unsubscribe/AHkFGQclO2Ip4Tv45OtsE4jhrCM4ccr2ks5qQ0PqgaJpZM4Itbqs .

mayank26saxena commented 8 years ago

Oh, alright. Thanks.

noln commented 7 years ago

There's no need to copy files into your project, and lose the ability to pull new changes when they do arrive. Just use the JitPack setup defined here.

Or for those too lazy to click:

Project-Level build.gradle

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

Module-level build.gradle (normally 'app/')

dependencies {
    compile 'com.github.hudomju:android-swipe-to-dismiss-undo:master'
}

And use a commit hash if you want to use a specific commit rather than the head of master.

dependencies {
    compile 'com.github.hudomju:android-swipe-to-dismiss-undo:e9995ec797'
}