|
|
|
|
|
by reemrevnivek
5359 days ago
|
|
> I dont want my development emulator to run twice as fast as actual hardware Why not? A lot of programmers develop native apps on high-performance workstations because it makes development faster. Once in a while, you might hit a bug in which the execution time on a phone or in a slow emulator will cause problems. These are the exception to the rule. Use good programming practices especially with respect to multithreading and time-sensitive code and use sensible algorithms (don't under- or over-optimize), and these will be few and far between. In general, you want fast builds, fast tests, and fast iteration. Anything that allows you to iterate faster is a good thing. |
|