1<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2  <!-- Begin Glide configuration -->
3  <!-- Internet access (https://bumptech.github.io/glide/doc/download-setup.html#internet) -->
4  <uses-permission android:name="android.permission.INTERNET" />
5  <!--
6  Allows Glide to monitor connectivity status and restart failed requests if users go from a
7  a disconnected to a connected network state.
8  -->
9  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
10
11  <!-- Local storage (https://bumptech.github.io/glide/doc/download-setup.html#local-storage) -->
12  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
13
14  <!-- End Glide configuration -->
15</manifest>
16