1. 04 May, 2018 1 commit
  2. 03 May, 2018 1 commit
  3. 02 May, 2018 10 commits
  4. 01 May, 2018 6 commits
  5. 30 Apr, 2018 16 commits
  6. 29 Apr, 2018 3 commits
  7. 28 Apr, 2018 3 commits
    • Divyanshu Bhargava's avatar
      change icon to text · 5e995fb9
      Divyanshu Bhargava authored
      5e995fb9
    • Marius Volkhart's avatar
      Change OkHttpClient initialization in Dagger graph · 9e8e6209
      Marius Volkhart authored
      Rather than using the Kotlin apply function, directly invoke the builder methods on the OkHttpClient.Builder instance. This produces noticeably better bytecode and the apply function does not add value in this case.
      9e8e6209
    • Marius Volkhart's avatar
      Change ImagePipelineConfig initialization in Dagger graph · 186f131e
      Marius Volkhart authored
      Rather than creating a new, unsized HashSet, use idiomatic Kotlin to create the set of RequestListeners for the ImagePipelineConfig. Under the hood a SingletonSet will be used which is optimized for the current use case, but if additional Listeners are added, the collections will automatically be sized appropriately. This leads to better memory utilization and reduced CPU usage.
      186f131e