Update acknowledgement info.

This commit is contained in:
Alex Ning 2020-06-04 23:02:05 +08:00
parent 164560d068
commit a9d2108c00
2 changed files with 16 additions and 5 deletions

View File

@ -49,7 +49,6 @@ dependencies {
implementation 'com.alexvasilkov:gesture-views:2.6.0' implementation 'com.alexvasilkov:gesture-views:2.6.0'
implementation 'com.github.bumptech.glide:glide:4.10.0' implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
implementation 'com.github.pwittchen:swipe-rx2:0.3.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.19' implementation 'io.reactivex.rxjava2:rxjava:2.2.19'
implementation 'com.squareup.retrofit2:retrofit:2.7.2' implementation 'com.squareup.retrofit2:retrofit:2.7.2'
@ -79,7 +78,7 @@ dependencies {
implementation 'com.atlassian.commonmark:commonmark:0.13.1' implementation 'com.atlassian.commonmark:commonmark:0.13.1'
implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.google.code.gson:gson:2.8.6'
implementation 'me.zhanghai.android.fastscroll:library:1.1.2' implementation 'me.zhanghai.android.fastscroll:library:1.1.2'
implementation("com.thefuntasty.hauler:core:3.1.0") implementation "com.thefuntasty.hauler:core:3.1.0"
def toroVersion = '3.7.0.2010003' def toroVersion = '3.7.0.2010003'
implementation "im.ene.toro3:toro:$toroVersion" implementation "im.ene.toro3:toro:$toroVersion"

View File

@ -49,9 +49,6 @@ public class AcknowledgementFragment extends Fragment {
acknowledgements.add(new Acknowledgement("Glide", acknowledgements.add(new Acknowledgement("Glide",
"A fast and efficient open source media management and image loading framework for Android", "A fast and efficient open source media management and image loading framework for Android",
Uri.parse("https://github.com/bumptech/glide"))); Uri.parse("https://github.com/bumptech/glide")));
acknowledgements.add(new Acknowledgement("Swipe",
"Detects swipe events on Android with listener and RxJava Observable",
Uri.parse("https://github.com/pwittchen/swipe")));
acknowledgements.add(new Acknowledgement("RxAndroid", acknowledgements.add(new Acknowledgement("RxAndroid",
"Android specific bindings for RxJava 2", "Android specific bindings for RxJava 2",
Uri.parse("https://github.com/ReactiveX/RxAndroid"))); Uri.parse("https://github.com/ReactiveX/RxAndroid")));
@ -100,6 +97,21 @@ public class AcknowledgementFragment extends Fragment {
acknowledgements.add(new Acknowledgement("FlowLayout", acknowledgements.add(new Acknowledgement("FlowLayout",
"A FlowLayout for Android, which allows child views flow to next row when there is no enough space.", "A FlowLayout for Android, which allows child views flow to next row when there is no enough space.",
Uri.parse("https://github.com/nex3z/FlowLayout"))); Uri.parse("https://github.com/nex3z/FlowLayout")));
acknowledgements.add(new Acknowledgement("Gson",
"Gson is a Java library that can be used to convert Java Objects into their JSON representation.",
Uri.parse("https://github.com/google/gson")));
acknowledgements.add(new Acknowledgement("Hauler",
"Hauler is an Android library containing custom layout which enables to easily create swipe to dismiss Activity.",
Uri.parse("https://github.com/futuredapp/hauler")));
acknowledgements.add(new Acknowledgement("Slidr",
"Easily add slide to dismiss functionality to an Activity",
Uri.parse("https://github.com/r0adkll/Slidr")));
acknowledgements.add(new Acknowledgement("commonmark-java",
"Java library for parsing and rendering Markdown text according to the CommonMark specification (and some extensions).",
Uri.parse("https://github.com/atlassian/commonmark-java")));
acknowledgements.add(new Acknowledgement("AndroidFastScroll",
"Fast scroll for Android RecyclerView and more.",
Uri.parse("https://github.com/zhanghai/AndroidFastScroll")));
AcknowledgementRecyclerViewAdapter adapter = new AcknowledgementRecyclerViewAdapter(activity, acknowledgements); AcknowledgementRecyclerViewAdapter adapter = new AcknowledgementRecyclerViewAdapter(activity, acknowledgements);
recyclerView.setLayoutManager(new LinearLayoutManager(activity)); recyclerView.setLayoutManager(new LinearLayoutManager(activity));