From 88d06ed4ea6dd07c8f1e2f370616fe067bb0a439 Mon Sep 17 00:00:00 2001 From: Pranjal Vyas Date: Fri, 22 Dec 2017 04:26:26 -0800 Subject: [PATCH] Update Useful_links.md added ReDex an android bytecode optimizer --- android/Useful_links.md | 1 + 1 file changed, 1 insertion(+) diff --git a/android/Useful_links.md b/android/Useful_links.md index 92ead5b3..7a82a7d6 100644 --- a/android/Useful_links.md +++ b/android/Useful_links.md @@ -113,6 +113,7 @@ - [RxJava](https://github.com/ReactiveX/RxJava) - Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM. - [RetroLamda](https://github.com/evant/gradle-retrolambda) - This plugin will automatically build your java or android project with retrolambda, giving you [lambda](https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html) goodness on java 6 or 7. - [Guava](https://github.com/google/guava) - The Guava project contains several of Google's core libraries that we rely on in our Java-based projects: collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, and so forth. +- [ReDex](https://github.com/facebook/redex) - Android bytecode (dex) optimizer, It provides a framework for reading, writing, and analyzing .dex files ### Event Bus - [AndroidEventBus](https://github.com/bboyfeiyu/AndroidEventBus) - A lightweight eventbus library for android, simplifies communication between Activities, Fragments, Threads, Services, etc.