Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PERFMATTERS for Android - DevFest Switzerland 2016

Hasan Hosgel
November 27, 2016

PERFMATTERS for Android - DevFest Switzerland 2016

The slogan '#PERFMATTERS' by Colt McAnlis is one of the most important statements, which an Android developer should follow. A well performing application makes the difference between a nice looking application and one, which gets successful. You, as an Android developer, have the responsibility to delight your users, so they don't feel how much work your application has to burden to fulfill the user's needs. This session will show you some easy optimizations and how to avoid glitches in the application. A lot of developers would shout, that this is premature optimization. In contrary it is preventive. With a small amount of work while developing you can avoid a lot of pitfalls. You will hopefully have a better understanding of the underlying system afterwards. During the session some tools and frameworks will be presented for helping you to fulfill your mission.

Hasan Hosgel

November 27, 2016
Tweet

More Decks by Hasan Hosgel

Other Decks in Technology

Transcript

  1. #DevFestCH #PERFMATTERS for Android | Hasan Hosgel Immobilien Scout GmbH

    Location: Berlin Employees: ~ 520 > 850.000 ads per month > 787 M visits in 2014* > 6 M Android downloads *source: comScore Digital Analytix, January 2015, complete IS24 (Portal & Mobile)
  2. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  3. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s • 49% app start < 2 s Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  4. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s • 49% app start < 2 s Users are intolerant of issues and are quick to uninstall mobile apps Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  5. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s • 49% app start < 2 s Users are intolerant of issues and are quick to uninstall mobile apps • 80% three attempts or less Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  6. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s • 49% app start < 2 s Users are intolerant of issues and are quick to uninstall mobile apps • 80% three attempts or less • 53% apps with severe issues like crashes, freezes or errors Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  7. #DevFestCH User Expectations Mobile App Users are impatient • 61%

    app start < 4 s • 49% app start < 2 s Users are intolerant of issues and are quick to uninstall mobile apps • 80% three attempts or less • 53% apps with severe issues like crashes, freezes or errors • 36% heavy battery usage Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  8. #DevFestCH User Expectations Users blame the app and the company

    who made it Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  9. #DevFestCH User Expectations Users blame the app and the company

    who made it • 55% app is responsible for performance issues Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  10. #DevFestCH User Expectations Users blame the app and the company

    who made it • 55% app is responsible for performance issues • 37% Stated that app crashes or errors make them think less of a company’s brand Source: https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf
  11. #DevFestCH Performance Impacts 500 ms delay • bounce rate -4.7%

    -- conversion rate -1.9% 1,000 ms delay • bounce rate -8.3% -- Conversion rate -3.5% 100ms delay mean for Amazon -1% revenue 11% scream at their device 4 % throw their phones Source: http://www.mobilejoomla.com/media/press/responsive-vs-serverside/Responsive-Design-vs- Server-Side-Solutions-Infographic.jpg http://giphy.com/gifs/reactiongifs-angry-time- 1306MTkHlXkUZG http://giphy.com/gifs/homer-simpson-fat-mumu- Sm8Ec3ddRWXa8
  12. #DevFestCH Possible improvements CPU Memory I/O • Keep the work

    of the main thread à ANR • Avoid GPU overdrawings • https://www.youtube.com/watc h?v=T52v50r-JfE
  13. #DevFestCH Possible improvements CPU Memory I/O • Keep the work

    of the main thread à ANR • Avoid GPU overdrawings • https://www.youtube.com/watc h?v=T52v50r-JfE • Avoid nested multi-pass layouts • http://goo.gl/Q5te24
  14. #DevFestCH Possible improvements CPU Memory I/O • Keep the work

    of the main thread à ANR • Avoid GPU overdrawings • https://www.youtube.com/watc h?v=T52v50r-JfE • Avoid nested multi-pass layouts • http://goo.gl/Q5te24 • Consider RenderScript for performance critical code
  15. #DevFestCH Setup LeakCanary debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5' releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5’ build.gradle public class

    DfChApplication extends Application { @Override public void onCreate() { super.onCreate(); LeakCanary.install(this); } } DfChApplication.java
  16. #DevFestCH Possible improvements CPU Memory I/O • Do not allocate

    memory inside onDraw() • Avoid Leaks • Avoid listener à EventBus
  17. #DevFestCH Possible improvements CPU Memory I/O • Do not allocate

    memory inside onDraw() • Avoid Leaks • Avoid listener à EventBus • Use SparseArray* family instead of JDK Collections/ Maps
  18. #DevFestCH Possible improvements CPU Memory I/O • Do not allocate

    memory inside onDraw() • Avoid Leaks • Avoid listener à EventBus • Use SparseArray* family instead of JDK Collections/ Maps • Be aware that enums need more resource, but use them, if it will make sense for you
  19. #DevFestCH Possible improvements CPU Memory I/O • Activate gzip compression

    on incoming and outgoing network traffic or FlatBuffer
  20. #DevFestCH Possible improvements CPU Memory I/O • Activate gzip compression

    on incoming and outgoing network traffic or FlatBuffer • Cache data on disk (image, http responses) with reasonable TTL
  21. #DevFestCH Possible improvements CPU Memory I/O • Activate gzip compression

    on incoming and outgoing network traffic or FlatBuffer • Cache data on disk (image, http responses) with reasonable TTL • Server side cache headers like ETag & Last-Modified
  22. #DevFestCH Possible improvements CPU Memory I/O • Activate gzip compression

    on incoming and outgoing network traffic or FlatBuffer • Cache data on disk (image, http responses) with reasonable TTL • Server side cache headers like ETag & Last-Modified • Use JobScheduler API to batch across system or better use push notifications for update information
  23. #DevFestCH Optimizing ArrayList public List<String> getDfChNames(List<Attendee> attendees) { List<String> names

    = new ArrayList<>(); for (Attendee attendee : attendees) { names.add(attendee.name); } return names; } JAVA
  24. #DevFestCH Optimizing ArrayList public List<String> getDfChNames(List<Attendee> attendees) { List<String> names

    = new ArrayList<>(attendees.size()); for (Attendee attendee : attendees) { names.add(attendee.name); } return names; } JAVA
  25. #DevFestCH Optimizing ArrayList @Override public boolean add(E object) { Object[]

    a = array; int s = size; if (s == a.length) { Object[] newArray = new Object[s + (s < (MIN_CAPACITY_INCREMENT / 2) ? MIN_CAPACITY_INCREMENT : s >> 1)]; System.arraycopy(a, 0, newArray, 0, s); array = a = newArray; } a[s] = object; size = s + 1; modCount++; return true; } JAVA
  26. #DevFestCH Optimizing Bundle public static DfChScheduleFragment instance(int startMode) { final

    DfChScheduleFragment fragment = new DfChScheduleFragment(); final Bundle bundle = new Bundle(); bundle.putInt(START_MODE, startMode); fragment.setArguments(bundle); return fragment; } JAVA
  27. #DevFestCH Optimizing Bundle public static DfChScheduleFragment instance(int startMode) { final

    DfChScheduleFragment fragment = new DfChScheduleFragment(); final Bundle bundle = new Bundle(1); bundle.putInt(START_MODE, startMode); fragment.setArguments(bundle); return fragment; } JAVA
  28. #DevFestCH Optimizing StringBuilder public StringBuilder getDfChNames(List<String> names) { StringBuilder builder

    = new StringBuilder(); for (String name : names) { if (builder.length() > 0) { builder.append(", "); } builder.append(name); } return builder; } JAVA
  29. #DevFestCH Optimizing StringBuilder public StringBuilder getDfChNames(List<String> names) { StringBuilder builder

    = new StringBuilder(names.size() * 13); for (String name : names) { if (builder.length() > 0) { builder.append(", "); } builder.append(name); } return builder; } JAVA
  30. #DevFestCH Optimizing StringBuilder final void append0(char[] chars) { int newCount

    = count + chars.length; if (newCount > value.length) { enlargeBuffer(newCount); } System.arraycopy(chars, 0, value, count, chars.length); count = newCount; } JAVA
  31. #DevFestCH Optimizing StringBuilder public StringBuilder addDfChOrganizer(StringBuilder names, List<String> organizers) {

    names.ensureCapacity(names.length() + organizers.size() * 13); for (String organizer : organizers) { if (names.length() > 0) { names.append(", "); } names.append(organizer); } } JAVA
  32. #DevFestCH Optimizing Moar – The Loop public StringBuilder addDfChOrganizer(StringBuilder names,

    List<String> organizers) { names.ensureCapacity(names.length() + organizers.size() * 13); for (String organizer : organizers) { if (names.length() > 0) { names.append(", "); } names.append(organizer); } } JAVA
  33. #DevFestCH Optimizing Moar – The Loop public StringBuilder addDfChOrganizer(StringBuilder names,

    List<String> organizers) { names.ensureCapacity(names.length() + organizers.size() * 13); for (int i = 0; i < organizers.size(); i++) { String organizer = organizers.get(i); if (names.length() > 0) { names.append(", "); } names.append(organizer); } } JAVA
  34. #DevFestCH Optimizing Moar – The Loop public StringBuilder addDfChOrganizer(StringBuilder names,

    List<String> organizers) { names.ensureCapacity(names.length() + organizers.size() * 13); for (int i = 0, organizersSize = organizers.size(); i < organizersSize; i++) { String organizer = organizers.get(i); if (names.length() > 0) { names.append(", "); } names.append(organizer); } } JAVA
  35. #DevFestCH Optimizing Moar – The Loop public StringBuilder addDfChOrganizer(StringBuilder names,

    List<String> organizers) { final int size = organizers.size(); names.ensureCapacity(names.length() + size * 13); for (int i = 0; i < size; i++) { String organizer = organizers.get(i); if (names.length() > 0) { names.append(", "); } names.append(organizer); } } JAVA
  36. #DevFestCH Optimizing Moar – The Loop public StringBuilder addDfChOrganizer(StringBuilder names,

    List<String> organizers) { final int size = organizers.size(); names.ensureCapacity(names.length() + size * 13); for (int i = 0; i < size; i++) { String organizer = organizers.get(i); names.append(organizer); names.append(", "); } names.substring(0, names.length()-1); } JAVA
  37. #DevFestCH Optimizing Much Moar – Method Invocation public void onViewCreated(View

    view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); text.setTextColor(attendee.isOrganizer() ? getResources().getColor(R.color.accent) : getResources().getColor(R.color.black)); avatar.setImageResource(attendee.getAvatar()); welcomeText.setText(getString( R.string.hello_world, attendee.name)); } JAVA
  38. #DevFestCH Optimizing Much Moar – Method Invocation public void onViewCreated(View

    view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); final Resources res = getResources(); text.setTextColor(attendee.isOrganizer() ? res.getColor(R.color.accent) : res.getColor(R.color.black)); avatar.setImageResource(attendee.getAvatar()); welcomeText.setText(getString( R.string.hello_world, attendee.name)); } JAVA
  39. #DevFestCH Optimizing Much Moar – Method Invocation public void onViewCreated(View

    view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); final Resources res = getResources(); text.setTextColor(attendee.isOrganizer() ? res.getColor(R.color.accent) : res.getColor(R.color.black)); avatar.setImageResource(attendee.getAvatar()); welcomeText.setText(res.getString( R.string.hello_world, attendee.name)); } JAVA
  40. #DevFestCH Optimizing Access Methods private Attendee attendee; public void onViewCreated(View

    view, Bundle savedInstanceState) { button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { makeText(getContext(), getWelcomeTextFor(attendee.getName()), LENGTH_SHORT).show(); } }); } private String getWelcomeTextFor(String name) { return getResources().getString(R.string.welcome_text, name); } JAVA
  41. #DevFestCH Finding Access Methods https://github.com/JakeWharton/dex-method-list $ ./build/dex-method-list src/test/resources/one.apk … package.DfChScheduleFragment

    access$000(DfChScheduleFragment ) package.DfChScheduleFragment access$100(DfChScheduleFragment , String) … CL
  42. #DevFestCH Optimizing Access Methods Attendee attendee; public void onViewCreated(View view,

    Bundle savedInstanceState) { button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { makeText(getContext(), getWelcomeTextFor(attendee.getName()), LENGTH_SHORT).show(); } }); } String getWelcomeTextFor(String name) { return getResources().getString(R.string.welcome_text, name); } JAVA
  43. #DevFestCH Proguard/ Multidex 64k method limit Aggressive Proguard configs Multidex

    minSdk > 20 è fine minSdk < 21 è start up penalties
  44. #DevFestCH www.immobilienscout24.de Contact: +HasanHosgel alosdev Thanks for attending! We are

    Hiring! http://www.immobilienscout24.de/jobs https://speakerdeck.com/alosdev/perfmatters-for-android-devfest- switzerland-2016
  45. #DevFestCH www.immobilienscout24.de Contact: +HasanHosgel alosdev Thanks for attending! We are

    Hiring! http://www.immobilienscout24.de/jobs https://speakerdeck.com/alosdev/perfmatters-for-android-devfest- switzerland-2016
  46. #DevFestCH Sources • https://ssl.www8.hp.com/ww/en/secure/pdf/4aa5-7696enw.pdf • http://www.mobilejoomla.com/media/press/responsive-vs- serverside/Responsive-Design-vs-Server-Side-Solutions- Infographic.jpg • https://speakerdeck.com/jakewharton/eliminating-code-overhead-

    square-hq-2015 • http://periplanisi.com/android/2013/11/multi-pass-viewgroup- and-performance/ • https://slideshare.net/dougsillars/android-app-performance- europe-2015 • https://www.youtube.com/playlist?list=PLWz5rJ2EKKc9CBxr3BVjPT PoDPLdPIFCE