Questions tagged [facebook-redex]

ReDex is an Android bytecode (dex) optimizer originally developed at Facebook. It provides a framework for reading, writing, and analyzing .dex files, and a set of optimization passes that use this framework to improve the bytecode. An APK optimized by ReDex should be smaller and faster than its source.

For more information about this tool please have a look at http://fbredex.com/

3 questions
0
votes
1 answer

Transform = matrix() prop to Rect not working in React Native

I want to transform the Rect. I have svg image. In that I have small rectangles which i want to rotate. the image is perfectly working on web. but it gives problem on react native android app. below is the svg image xml
chetan
  • 953
  • 3
  • 12
  • 20
0
votes
1 answer

redux-thunk fetch parse response

I am new to redux and reactjs and I am trying to fetch some server side data to my code. This is my thunk fetch: fetch(`/WebApp/Dashboard/CreateAlert`).then(response => { console.log(response); }); This is what I see in the console: In fiddler…
omriman12
  • 1,644
  • 7
  • 25
  • 48
0
votes
2 answers

How to setup Facebook Redex in order to optimize Android Bytecodes?

There is a very good instruction in Redex page at http://fbredex.com/. I follow the instruction but I have problem in two steps. 1.I have no problem with run of first command (my OS is Ubuntu) sudo apt-get install \ g++ \ automake \ …
Hesam
  • 52,260
  • 74
  • 224
  • 365