Glides causes the application to not be installed in old 2.3.x Android devices.

Error:	"Package has mismatched uid: 10124 on disk, 10134 in settings"

Explanation:
  During standard installation, a program called "dexopt" runs to prepare your 
  app for the specific phone it's being installed on. Dexopt uses a fixed-size 
  buffer (called the "LinearAlloc" buffer) to store information about all of 
  the methods in your app. Recent versions of Android use an 8 or 16 MB buffer, 
  but Froyo and Gingerbread (versions 2.2 and 2.3) only have 5 MB. Because older 
  versions of Android have a relatively small buffer, our large number of methods 
  was exceeding the buffer size and causing dexopt to crash.
  
  