├── .gitignore
├── LICENSE
├── README.md
├── app
├── build.gradle
├── build
│ ├── generated
│ │ ├── fabric
│ │ │ └── res
│ │ │ │ └── debug
│ │ │ │ └── values
│ │ │ │ └── com_crashlytics_build_id.xml
│ │ ├── mockable-android-26.v3.jar
│ │ └── source
│ │ │ ├── buildConfig
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── quixom
│ │ │ │ │ └── apps
│ │ │ │ │ └── weatherstream
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── quixom
│ │ │ │ └── apps
│ │ │ │ └── weatherstream
│ │ │ │ └── BuildConfig.java
│ │ │ ├── kapt
│ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ ├── quixom
│ │ │ │ └── apps
│ │ │ │ │ └── weatherstream
│ │ │ │ │ └── model
│ │ │ │ │ ├── Clouds_Table.java
│ │ │ │ │ ├── Coord_Table.java
│ │ │ │ │ ├── ForecastList_Table.java
│ │ │ │ │ ├── LocationSearchHistory_Table.java
│ │ │ │ │ ├── Main_Table.java
│ │ │ │ │ ├── Rain_Table.java
│ │ │ │ │ ├── Sys_Table.java
│ │ │ │ │ ├── WeatherData_Table.java
│ │ │ │ │ ├── WeatherForecastData_Table.java
│ │ │ │ │ ├── Weather_Table.java
│ │ │ │ │ └── Wind_Table.java
│ │ │ │ └── raizlabs
│ │ │ │ └── android
│ │ │ │ └── dbflow
│ │ │ │ └── config
│ │ │ │ ├── GeneratedDatabaseHolder.java
│ │ │ │ └── WeatherStreamDBWeatherStreamDB_Database.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ │ └── test
│ │ │ │ │ ├── espresso
│ │ │ │ │ ├── R.java
│ │ │ │ │ └── idling
│ │ │ │ │ │ └── concurrent
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── rules
│ │ │ │ │ └── R.java
│ │ │ │ │ └── runner
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── quixom
│ │ │ │ └── apps
│ │ │ │ └── weatherstream
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ └── debug
│ │ │ ├── android
│ │ │ ├── arch
│ │ │ │ └── lifecycle
│ │ │ │ │ └── R.java
│ │ │ └── support
│ │ │ │ ├── compat
│ │ │ │ └── R.java
│ │ │ │ ├── constraint
│ │ │ │ └── R.java
│ │ │ │ ├── coreui
│ │ │ │ └── R.java
│ │ │ │ ├── coreutils
│ │ │ │ └── R.java
│ │ │ │ ├── design
│ │ │ │ └── R.java
│ │ │ │ ├── fragment
│ │ │ │ └── R.java
│ │ │ │ ├── graphics
│ │ │ │ └── drawable
│ │ │ │ │ ├── R.java
│ │ │ │ │ └── animated
│ │ │ │ │ └── R.java
│ │ │ │ ├── mediacompat
│ │ │ │ └── R.java
│ │ │ │ ├── transition
│ │ │ │ └── R.java
│ │ │ │ ├── v4
│ │ │ │ └── R.java
│ │ │ │ └── v7
│ │ │ │ ├── appcompat
│ │ │ │ └── R.java
│ │ │ │ ├── cardview
│ │ │ │ └── R.java
│ │ │ │ └── recyclerview
│ │ │ │ └── R.java
│ │ │ ├── com
│ │ │ ├── crashlytics
│ │ │ │ └── android
│ │ │ │ │ ├── R.java
│ │ │ │ │ ├── answers
│ │ │ │ │ └── R.java
│ │ │ │ │ ├── beta
│ │ │ │ │ └── R.java
│ │ │ │ │ └── core
│ │ │ │ │ └── R.java
│ │ │ ├── google
│ │ │ │ └── android
│ │ │ │ │ └── gms
│ │ │ │ │ ├── R.java
│ │ │ │ │ ├── base
│ │ │ │ │ └── R.java
│ │ │ │ │ ├── location
│ │ │ │ │ └── R.java
│ │ │ │ │ └── maps
│ │ │ │ │ └── R.java
│ │ │ ├── quixom
│ │ │ │ └── apps
│ │ │ │ │ └── weatherstream
│ │ │ │ │ └── R.java
│ │ │ ├── raizlabs
│ │ │ │ └── android
│ │ │ │ │ └── dbflow
│ │ │ │ │ ├── R.java
│ │ │ │ │ └── kotlinextensions
│ │ │ │ │ └── R.java
│ │ │ └── victor
│ │ │ │ └── loading
│ │ │ │ └── R.java
│ │ │ ├── info
│ │ │ └── hoang8f
│ │ │ │ └── android
│ │ │ │ └── segmented
│ │ │ │ └── R.java
│ │ │ └── io
│ │ │ └── fabric
│ │ │ └── sdk
│ │ │ └── android
│ │ │ └── R.java
│ ├── intermediates
│ │ ├── assets
│ │ │ └── debug
│ │ │ │ └── crashlytics-build.properties
│ │ ├── blame
│ │ │ └── res
│ │ │ │ └── debug
│ │ │ │ ├── multi-v2
│ │ │ │ ├── debug.json
│ │ │ │ ├── values-af.json
│ │ │ │ ├── values-am.json
│ │ │ │ ├── values-ar.json
│ │ │ │ ├── values-az-rAZ.json
│ │ │ │ ├── values-az.json
│ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ ├── values-be.json
│ │ │ │ ├── values-bg.json
│ │ │ │ ├── values-bn-rBD.json
│ │ │ │ ├── values-bn.json
│ │ │ │ ├── values-bs.json
│ │ │ │ ├── values-ca.json
│ │ │ │ ├── values-cs.json
│ │ │ │ ├── values-da.json
│ │ │ │ ├── values-de.json
│ │ │ │ ├── values-el.json
│ │ │ │ ├── values-en-rAU.json
│ │ │ │ ├── values-en-rGB.json
│ │ │ │ ├── values-en-rIN.json
│ │ │ │ ├── values-es-rUS.json
│ │ │ │ ├── values-es.json
│ │ │ │ ├── values-et-rEE.json
│ │ │ │ ├── values-et.json
│ │ │ │ ├── values-eu-rES.json
│ │ │ │ ├── values-eu.json
│ │ │ │ ├── values-fa.json
│ │ │ │ ├── values-fi.json
│ │ │ │ ├── values-fr-rCA.json
│ │ │ │ ├── values-fr.json
│ │ │ │ ├── values-gl-rES.json
│ │ │ │ ├── values-gl.json
│ │ │ │ ├── values-gu-rIN.json
│ │ │ │ ├── values-gu.json
│ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ ├── values-hi.json
│ │ │ │ ├── values-hr.json
│ │ │ │ ├── values-hu.json
│ │ │ │ ├── values-hy-rAM.json
│ │ │ │ ├── values-hy.json
│ │ │ │ ├── values-in.json
│ │ │ │ ├── values-is-rIS.json
│ │ │ │ ├── values-is.json
│ │ │ │ ├── values-it.json
│ │ │ │ ├── values-iw.json
│ │ │ │ ├── values-ja.json
│ │ │ │ ├── values-ka-rGE.json
│ │ │ │ ├── values-ka.json
│ │ │ │ ├── values-kk-rKZ.json
│ │ │ │ ├── values-kk.json
│ │ │ │ ├── values-km-rKH.json
│ │ │ │ ├── values-km.json
│ │ │ │ ├── values-kn-rIN.json
│ │ │ │ ├── values-kn.json
│ │ │ │ ├── values-ko.json
│ │ │ │ ├── values-ky-rKG.json
│ │ │ │ ├── values-ky.json
│ │ │ │ ├── values-land.json
│ │ │ │ ├── values-large-v4.json
│ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ ├── values-lo-rLA.json
│ │ │ │ ├── values-lo.json
│ │ │ │ ├── values-lt.json
│ │ │ │ ├── values-lv.json
│ │ │ │ ├── values-mk-rMK.json
│ │ │ │ ├── values-mk.json
│ │ │ │ ├── values-ml-rIN.json
│ │ │ │ ├── values-ml.json
│ │ │ │ ├── values-mn-rMN.json
│ │ │ │ ├── values-mn.json
│ │ │ │ ├── values-mr-rIN.json
│ │ │ │ ├── values-mr.json
│ │ │ │ ├── values-ms-rMY.json
│ │ │ │ ├── values-ms.json
│ │ │ │ ├── values-my-rMM.json
│ │ │ │ ├── values-my.json
│ │ │ │ ├── values-nb.json
│ │ │ │ ├── values-ne-rNP.json
│ │ │ │ ├── values-ne.json
│ │ │ │ ├── values-night-v8.json
│ │ │ │ ├── values-nl.json
│ │ │ │ ├── values-pa-rIN.json
│ │ │ │ ├── values-pa.json
│ │ │ │ ├── values-pl.json
│ │ │ │ ├── values-port.json
│ │ │ │ ├── values-pt-rBR.json
│ │ │ │ ├── values-pt-rPT.json
│ │ │ │ ├── values-pt.json
│ │ │ │ ├── values-ro.json
│ │ │ │ ├── values-ru.json
│ │ │ │ ├── values-si-rLK.json
│ │ │ │ ├── values-si.json
│ │ │ │ ├── values-sk.json
│ │ │ │ ├── values-sl.json
│ │ │ │ ├── values-sq-rAL.json
│ │ │ │ ├── values-sq.json
│ │ │ │ ├── values-sr.json
│ │ │ │ ├── values-sv.json
│ │ │ │ ├── values-sw.json
│ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ ├── values-ta-rIN.json
│ │ │ │ ├── values-ta.json
│ │ │ │ ├── values-te-rIN.json
│ │ │ │ ├── values-te.json
│ │ │ │ ├── values-th.json
│ │ │ │ ├── values-tl.json
│ │ │ │ ├── values-tr.json
│ │ │ │ ├── values-uk.json
│ │ │ │ ├── values-ur-rPK.json
│ │ │ │ ├── values-ur.json
│ │ │ │ ├── values-uz-rUZ.json
│ │ │ │ ├── values-uz.json
│ │ │ │ ├── values-v11.json
│ │ │ │ ├── values-v12.json
│ │ │ │ ├── values-v13.json
│ │ │ │ ├── values-v14.json
│ │ │ │ ├── values-v16.json
│ │ │ │ ├── values-v17.json
│ │ │ │ ├── values-v18.json
│ │ │ │ ├── values-v21.json
│ │ │ │ ├── values-v22.json
│ │ │ │ ├── values-v23.json
│ │ │ │ ├── values-v24.json
│ │ │ │ ├── values-v25.json
│ │ │ │ ├── values-v26.json
│ │ │ │ ├── values-vi.json
│ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ ├── values-zh-rCN.json
│ │ │ │ ├── values-zh-rHK.json
│ │ │ │ ├── values-zh-rTW.json
│ │ │ │ ├── values-zu.json
│ │ │ │ └── values.json
│ │ │ │ └── single
│ │ │ │ └── debug.json
│ │ ├── classes
│ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ ├── arch
│ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.class
│ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── design
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$animator.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ └── animated
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── mediacompat
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── transition
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── v4
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ ├── appcompat
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ ├── cardview
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ │ └── recyclerview
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── com
│ │ │ │ ├── crashlytics
│ │ │ │ │ └── android
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ ├── answers
│ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── beta
│ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── core
│ │ │ │ │ │ └── R.class
│ │ │ │ ├── google
│ │ │ │ │ └── android
│ │ │ │ │ │ └── gms
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ ├── base
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── location
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── maps
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ ├── quixom
│ │ │ │ │ └── apps
│ │ │ │ │ │ └── weatherstream
│ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$font.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$xml.class
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ ├── model
│ │ │ │ │ │ ├── Clouds_Table.class
│ │ │ │ │ │ ├── Coord_Table.class
│ │ │ │ │ │ ├── ForecastList_Table.class
│ │ │ │ │ │ ├── LocationSearchHistory_Table.class
│ │ │ │ │ │ ├── Main_Table.class
│ │ │ │ │ │ ├── Rain_Table.class
│ │ │ │ │ │ ├── Sys_Table.class
│ │ │ │ │ │ ├── WeatherData_Table.class
│ │ │ │ │ │ ├── WeatherForecastData_Table.class
│ │ │ │ │ │ ├── Weather_Table.class
│ │ │ │ │ │ └── Wind_Table.class
│ │ │ │ │ │ ├── slidingmenu
│ │ │ │ │ │ ├── CanvasTransformerBuilder$1.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder$2.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder$3.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder$4.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder$5.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder$6.class
│ │ │ │ │ │ ├── CanvasTransformerBuilder.class
│ │ │ │ │ │ ├── CustomViewAbove$1.class
│ │ │ │ │ │ ├── CustomViewAbove$2.class
│ │ │ │ │ │ ├── CustomViewAbove$OnPageChangeListener.class
│ │ │ │ │ │ ├── CustomViewAbove$SimpleOnPageChangeListener.class
│ │ │ │ │ │ ├── CustomViewAbove.class
│ │ │ │ │ │ ├── CustomViewBehind.class
│ │ │ │ │ │ ├── MenuInterface.class
│ │ │ │ │ │ ├── SlidingMenu$1.class
│ │ │ │ │ │ ├── SlidingMenu$2.class
│ │ │ │ │ │ ├── SlidingMenu$CanvasTransformer.class
│ │ │ │ │ │ ├── SlidingMenu$OnCloseListener.class
│ │ │ │ │ │ ├── SlidingMenu$OnClosedListener.class
│ │ │ │ │ │ ├── SlidingMenu$OnOpenListener.class
│ │ │ │ │ │ ├── SlidingMenu$OnOpenedListener.class
│ │ │ │ │ │ ├── SlidingMenu$SavedState$1.class
│ │ │ │ │ │ ├── SlidingMenu$SavedState.class
│ │ │ │ │ │ └── SlidingMenu.class
│ │ │ │ │ │ └── weatherview
│ │ │ │ │ │ ├── confetti
│ │ │ │ │ │ ├── ConfettiManager$1.class
│ │ │ │ │ │ ├── ConfettiManager$2.class
│ │ │ │ │ │ └── ConfettiManager.class
│ │ │ │ │ │ └── confetto
│ │ │ │ │ │ └── Confetto.class
│ │ │ │ ├── raizlabs
│ │ │ │ │ └── android
│ │ │ │ │ │ └── dbflow
│ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ ├── GeneratedDatabaseHolder.class
│ │ │ │ │ │ └── WeatherStreamDBWeatherStreamDB_Database.class
│ │ │ │ │ │ └── kotlinextensions
│ │ │ │ │ │ └── R.class
│ │ │ │ └── victor
│ │ │ │ │ └── loading
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── info
│ │ │ │ └── hoang8f
│ │ │ │ │ └── android
│ │ │ │ │ └── segmented
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── io
│ │ │ │ └── fabric
│ │ │ │ └── sdk
│ │ │ │ └── android
│ │ │ │ └── R.class
│ │ ├── incremental
│ │ │ ├── compileDebugAidl
│ │ │ │ └── dependency.store
│ │ │ ├── debug-mergeJavaRes
│ │ │ │ ├── merge-state
│ │ │ │ └── zip-cache
│ │ │ │ │ ├── +DgkjEKpaoNSiZHE1PekJmUXbkM=
│ │ │ │ │ ├── +SCkNFjrGRD7v9wVU2w8h9XWvgU=
│ │ │ │ │ ├── 0bYqmY4rtaiPOghEmpHcmdtC7Tg=
│ │ │ │ │ ├── 0gtEDQcXefXaoT6LM0KjS9+WU2w=
│ │ │ │ │ ├── 1+IJZO4pc5UGRL9cZJI8QMl8AO4=
│ │ │ │ │ ├── 1zPBvJFvH9uzIP3HHuqXxHoNVjM=
│ │ │ │ │ ├── 5OyrZdF7vd5PDUj5ANXjM6mcLZM=
│ │ │ │ │ ├── 5V9MFU54ntMma_4JMVzhqOiBZSc=
│ │ │ │ │ ├── 5YdqV7o557oX708HJeVuI45Ffbo=
│ │ │ │ │ ├── 67NwbLx5MLiHICL6ci1BPfvHsRM=
│ │ │ │ │ ├── 6CbbW8UzEq3Jwqr71qUpAhDA2uc=
│ │ │ │ │ ├── 6SChXx5ccvAcb4haWIY6LkBV+40=
│ │ │ │ │ ├── 7S6Gr7gmim4Z8kSvsK01ED6ORZg=
│ │ │ │ │ ├── C6B+JdVv7APQr8Sa90COJrKWXCc=
│ │ │ │ │ ├── FQ3odznI4nTxJ_+F4C26psFP+q4=
│ │ │ │ │ ├── GgrNTjOzP6tl31L5JtlgDB1MBzc=
│ │ │ │ │ ├── GsyDa0kk2e1I6KYbTPMVExq8OQg=
│ │ │ │ │ ├── Ncpu7H1P3wp6JGT58fPwzKtFBJo=
│ │ │ │ │ ├── Oj2VC95BZUmwMzticuadInlu1iE=
│ │ │ │ │ ├── PzXuGzLGvSigCsDrdZ0ixZseAbM=
│ │ │ │ │ ├── Q89Q4qxvTbBtKvrJdvDiLfvl3_Y=
│ │ │ │ │ ├── QnhxDHtojuWxuno4p2sxgi2C3ic=
│ │ │ │ │ ├── Ti9dNL_5TcXwAlqh7WlIFZNy2ZI=
│ │ │ │ │ ├── WNMc0e9tuiwB+vYcYecHSZ3tNuA=
│ │ │ │ │ ├── Y0Nczre5StV5mI_csP6LrqRHdAM=
│ │ │ │ │ ├── YeltvHvAX+tf1uyRVPGZ9fgXRhY=
│ │ │ │ │ ├── aGQLMPbS3GrfPnMaC1gyovhPr_4=
│ │ │ │ │ ├── bIyOT2j0YMLnYX0Li08j9kZDJ7Y=
│ │ │ │ │ ├── cTeaj76abcywJVLdpd+fnATuCl8=
│ │ │ │ │ ├── edSgCsg5Z41TLgS5M3dWG18EI3I=
│ │ │ │ │ ├── ejfDRFntNzU_WNc1RS8RbAtOMMU=
│ │ │ │ │ ├── ibIwrOWKIA1AKVkdL5wKR9IKuS8=
│ │ │ │ │ ├── j14m47Q+lcTqr4B8hQI2whW00Mw=
│ │ │ │ │ ├── kQB1QaqszelCo3TTy5QwwbSUcGY=
│ │ │ │ │ ├── nh20uPWWnJoM4vaUCbIPVqKj2oE=
│ │ │ │ │ ├── o3V2znK1GQx08uqbbBvWgDdyxE4=
│ │ │ │ │ ├── svF1uHncig8Tn3tJ6whXE2g9+BY=
│ │ │ │ │ ├── ubFJc6csW+rvyTc0oLUN+LAAOjA=
│ │ │ │ │ ├── usoZhIrXsESMvea+3mdVlhoUyKQ=
│ │ │ │ │ ├── wtqo8fss5GH7p_VH2gDF_MWk6BI=
│ │ │ │ │ └── yX8rTU1sX0_YT0GB7hVKE582lZw=
│ │ │ ├── debug-mergeJniLibs
│ │ │ │ ├── merge-state
│ │ │ │ └── zip-cache
│ │ │ │ │ ├── +DgkjEKpaoNSiZHE1PekJmUXbkM=
│ │ │ │ │ ├── +SCkNFjrGRD7v9wVU2w8h9XWvgU=
│ │ │ │ │ ├── 0bYqmY4rtaiPOghEmpHcmdtC7Tg=
│ │ │ │ │ ├── 0gtEDQcXefXaoT6LM0KjS9+WU2w=
│ │ │ │ │ ├── 1+IJZO4pc5UGRL9cZJI8QMl8AO4=
│ │ │ │ │ ├── 1zPBvJFvH9uzIP3HHuqXxHoNVjM=
│ │ │ │ │ ├── 5OyrZdF7vd5PDUj5ANXjM6mcLZM=
│ │ │ │ │ ├── 5V9MFU54ntMma_4JMVzhqOiBZSc=
│ │ │ │ │ ├── 5YdqV7o557oX708HJeVuI45Ffbo=
│ │ │ │ │ ├── 67NwbLx5MLiHICL6ci1BPfvHsRM=
│ │ │ │ │ ├── 6CbbW8UzEq3Jwqr71qUpAhDA2uc=
│ │ │ │ │ ├── 6SChXx5ccvAcb4haWIY6LkBV+40=
│ │ │ │ │ ├── 7S6Gr7gmim4Z8kSvsK01ED6ORZg=
│ │ │ │ │ ├── C6B+JdVv7APQr8Sa90COJrKWXCc=
│ │ │ │ │ ├── FQ3odznI4nTxJ_+F4C26psFP+q4=
│ │ │ │ │ ├── GgrNTjOzP6tl31L5JtlgDB1MBzc=
│ │ │ │ │ ├── GsyDa0kk2e1I6KYbTPMVExq8OQg=
│ │ │ │ │ ├── Ncpu7H1P3wp6JGT58fPwzKtFBJo=
│ │ │ │ │ ├── Oj2VC95BZUmwMzticuadInlu1iE=
│ │ │ │ │ ├── PzXuGzLGvSigCsDrdZ0ixZseAbM=
│ │ │ │ │ ├── Q89Q4qxvTbBtKvrJdvDiLfvl3_Y=
│ │ │ │ │ ├── QnhxDHtojuWxuno4p2sxgi2C3ic=
│ │ │ │ │ ├── Ti9dNL_5TcXwAlqh7WlIFZNy2ZI=
│ │ │ │ │ ├── WNMc0e9tuiwB+vYcYecHSZ3tNuA=
│ │ │ │ │ ├── Y0Nczre5StV5mI_csP6LrqRHdAM=
│ │ │ │ │ ├── YeltvHvAX+tf1uyRVPGZ9fgXRhY=
│ │ │ │ │ ├── aGQLMPbS3GrfPnMaC1gyovhPr_4=
│ │ │ │ │ ├── bIyOT2j0YMLnYX0Li08j9kZDJ7Y=
│ │ │ │ │ ├── cTeaj76abcywJVLdpd+fnATuCl8=
│ │ │ │ │ ├── edSgCsg5Z41TLgS5M3dWG18EI3I=
│ │ │ │ │ ├── ejfDRFntNzU_WNc1RS8RbAtOMMU=
│ │ │ │ │ ├── ibIwrOWKIA1AKVkdL5wKR9IKuS8=
│ │ │ │ │ ├── j14m47Q+lcTqr4B8hQI2whW00Mw=
│ │ │ │ │ ├── kQB1QaqszelCo3TTy5QwwbSUcGY=
│ │ │ │ │ ├── nh20uPWWnJoM4vaUCbIPVqKj2oE=
│ │ │ │ │ ├── o3V2znK1GQx08uqbbBvWgDdyxE4=
│ │ │ │ │ ├── svF1uHncig8Tn3tJ6whXE2g9+BY=
│ │ │ │ │ ├── ubFJc6csW+rvyTc0oLUN+LAAOjA=
│ │ │ │ │ ├── usoZhIrXsESMvea+3mdVlhoUyKQ=
│ │ │ │ │ ├── wtqo8fss5GH7p_VH2gDF_MWk6BI=
│ │ │ │ │ └── yX8rTU1sX0_YT0GB7hVKE582lZw=
│ │ │ ├── mergeDebugAssets
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ ├── merged.dir
│ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugShaders
│ │ │ │ └── merger.xml
│ │ │ └── packageDebug
│ │ │ │ └── debug
│ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ ├── file-input-save-data.txt
│ │ │ │ └── zip-cache
│ │ │ │ ├── 28hKS0GfO_ChAerOXkIKVmOUuro=
│ │ │ │ └── xDGTS8xF37zNEp7QJeoGV7kckOo=
│ │ ├── javaPrecompile
│ │ │ └── debug
│ │ │ │ └── annotationProcessors.json
│ │ ├── manifests
│ │ │ ├── density
│ │ │ │ └── debug
│ │ │ │ │ └── output.json
│ │ │ ├── full
│ │ │ │ └── debug
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ └── instant-run
│ │ │ │ └── debug
│ │ │ │ └── output.json
│ │ ├── res
│ │ │ ├── debug
│ │ │ │ ├── output.json
│ │ │ │ └── resources-debug.ap_
│ │ │ ├── merged
│ │ │ │ └── debug
│ │ │ │ │ ├── anim-v21_design_bottom_sheet_slide_in.xml.flat
│ │ │ │ │ ├── anim-v21_design_bottom_sheet_slide_out.xml.flat
│ │ │ │ │ ├── anim_abc_fade_in.xml.flat
│ │ │ │ │ ├── anim_abc_fade_out.xml.flat
│ │ │ │ │ ├── anim_abc_grow_fade_in_from_bottom.xml.flat
│ │ │ │ │ ├── anim_abc_popup_enter.xml.flat
│ │ │ │ │ ├── anim_abc_popup_exit.xml.flat
│ │ │ │ │ ├── anim_abc_shrink_fade_out_from_bottom.xml.flat
│ │ │ │ │ ├── anim_abc_slide_in_bottom.xml.flat
│ │ │ │ │ ├── anim_abc_slide_in_top.xml.flat
│ │ │ │ │ ├── anim_abc_slide_out_bottom.xml.flat
│ │ │ │ │ ├── anim_abc_slide_out_top.xml.flat
│ │ │ │ │ ├── anim_activity_fad_out.xml.flat
│ │ │ │ │ ├── anim_activity_fade_in.xml.flat
│ │ │ │ │ ├── anim_design_snackbar_in.xml.flat
│ │ │ │ │ ├── anim_design_snackbar_out.xml.flat
│ │ │ │ │ ├── anim_tooltip_enter.xml.flat
│ │ │ │ │ ├── anim_tooltip_exit.xml.flat
│ │ │ │ │ ├── animator-v21_design_appbar_state_list_animator.xml.flat
│ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_dark.xml.flat
│ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_light.xml.flat
│ │ │ │ │ ├── color-v23_abc_btn_colored_borderless_text_material.xml.flat
│ │ │ │ │ ├── color-v23_abc_btn_colored_text_material.xml.flat
│ │ │ │ │ ├── color-v23_abc_color_highlight_material.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_btn_checkable.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_default.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_edittext.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_seek_thumb.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_spinner.xml.flat
│ │ │ │ │ ├── color-v23_abc_tint_switch_track.xml.flat
│ │ │ │ │ ├── color-v23_design_tint_password_toggle.xml.flat
│ │ │ │ │ ├── color_abc_btn_colored_borderless_text_material.xml.flat
│ │ │ │ │ ├── color_abc_btn_colored_text_material.xml.flat
│ │ │ │ │ ├── color_abc_hint_foreground_material_dark.xml.flat
│ │ │ │ │ ├── color_abc_hint_foreground_material_light.xml.flat
│ │ │ │ │ ├── color_abc_primary_text_disable_only_material_dark.xml.flat
│ │ │ │ │ ├── color_abc_primary_text_disable_only_material_light.xml.flat
│ │ │ │ │ ├── color_abc_primary_text_material_dark.xml.flat
│ │ │ │ │ ├── color_abc_primary_text_material_light.xml.flat
│ │ │ │ │ ├── color_abc_search_url_text.xml.flat
│ │ │ │ │ ├── color_abc_secondary_text_material_dark.xml.flat
│ │ │ │ │ ├── color_abc_secondary_text_material_light.xml.flat
│ │ │ │ │ ├── color_abc_tint_btn_checkable.xml.flat
│ │ │ │ │ ├── color_abc_tint_default.xml.flat
│ │ │ │ │ ├── color_abc_tint_edittext.xml.flat
│ │ │ │ │ ├── color_abc_tint_seek_thumb.xml.flat
│ │ │ │ │ ├── color_abc_tint_spinner.xml.flat
│ │ │ │ │ ├── color_abc_tint_switch_track.xml.flat
│ │ │ │ │ ├── color_common_google_signin_btn_text_dark.xml.flat
│ │ │ │ │ ├── color_common_google_signin_btn_text_light.xml.flat
│ │ │ │ │ ├── color_common_plus_signin_btn_text_dark.xml.flat
│ │ │ │ │ ├── color_common_plus_signin_btn_text_light.xml.flat
│ │ │ │ │ ├── color_design_error.xml.flat
│ │ │ │ │ ├── color_design_tint_password_toggle.xml.flat
│ │ │ │ │ ├── color_switch_thumb_material_dark.xml.flat
│ │ │ │ │ ├── color_switch_thumb_material_light.xml.flat
│ │ │ │ │ ├── color_text_selector_color.xml.flat
│ │ │ │ │ ├── drawable-anydpi-v21_design_ic_visibility.xml.flat
│ │ │ │ │ ├── drawable-anydpi-v21_design_ic_visibility_off.xml.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_focused_holo.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_design_ic_visibility.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_design_ic_visibility_off.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_full_open_on_phone.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_google_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_ic_googleplayservices.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_common_plus_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-hdpi_places_ic_clear.png.flat
│ │ │ │ │ ├── drawable-hdpi_places_ic_search.png.flat
│ │ │ │ │ ├── drawable-hdpi_powered_by_google_dark.png.flat
│ │ │ │ │ ├── drawable-hdpi_powered_by_google_light.png.flat
│ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_focused_holo.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_design_ic_visibility.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_design_ic_visibility_off.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_full_open_on_phone.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_google_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_common_plus_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-mdpi_places_ic_clear.png.flat
│ │ │ │ │ ├── drawable-mdpi_places_ic_search.png.flat
│ │ │ │ │ ├── drawable-mdpi_powered_by_google_dark.png.flat
│ │ │ │ │ ├── drawable-mdpi_powered_by_google_light.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_full_open_on_phone.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_google_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-tvdpi_common_plus_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-v21_abc_action_bar_item_background_material.xml.flat
│ │ │ │ │ ├── drawable-v21_abc_btn_colored_material.xml.flat
│ │ │ │ │ ├── drawable-v21_abc_edit_text_material.xml.flat
│ │ │ │ │ ├── drawable-v21_avd_hide_password.xml.flat
│ │ │ │ │ ├── drawable-v21_avd_show_password.xml.flat
│ │ │ │ │ ├── drawable-v21_design_bottom_navigation_item_background.xml.flat
│ │ │ │ │ ├── drawable-v21_design_password_eye.xml.flat
│ │ │ │ │ ├── drawable-v21_notification_action_background.xml.flat
│ │ │ │ │ ├── drawable-v23_abc_control_background_material.xml.flat
│ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_design_ic_visibility.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_design_ic_visibility_off.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_full_open_on_phone.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_google_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_common_plus_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xhdpi_places_ic_clear.png.flat
│ │ │ │ │ ├── drawable-xhdpi_places_ic_search.png.flat
│ │ │ │ │ ├── drawable-xhdpi_powered_by_google_dark.png.flat
│ │ │ │ │ ├── drawable-xhdpi_powered_by_google_light.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_design_ic_visibility.png.flat
│ │ │ │ │ ├── drawable-xxhdpi-v4_design_ic_visibility_off.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_full_open_on_phone.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_google_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_icon_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_dark_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_dark_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_dark_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_dark_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_light_disabled.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_light_focused.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_light_normal.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_common_plus_signin_btn_text_light_pressed.9.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_places_ic_clear.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_places_ic_search.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_powered_by_google_dark.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_powered_by_google_light.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_design_ic_visibility.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi_places_ic_clear.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi_places_ic_search.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi_powered_by_google_dark.png.flat
│ │ │ │ │ ├── drawable-xxxhdpi_powered_by_google_light.png.flat
│ │ │ │ │ ├── drawable_abc_btn_borderless_material.xml.flat
│ │ │ │ │ ├── drawable_abc_btn_check_material.xml.flat
│ │ │ │ │ ├── drawable_abc_btn_default_mtrl_shape.xml.flat
│ │ │ │ │ ├── drawable_abc_btn_radio_material.xml.flat
│ │ │ │ │ ├── drawable_abc_cab_background_internal_bg.xml.flat
│ │ │ │ │ ├── drawable_abc_cab_background_top_material.xml.flat
│ │ │ │ │ ├── drawable_abc_dialog_material_background.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_ab_back_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_clear_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_go_search_api_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_menu_overflow_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_search_api_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ic_voice_search_api_material.xml.flat
│ │ │ │ │ ├── drawable_abc_item_background_holo_dark.xml.flat
│ │ │ │ │ ├── drawable_abc_item_background_holo_light.xml.flat
│ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_dark.xml.flat
│ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_light.xml.flat
│ │ │ │ │ ├── drawable_abc_list_selector_holo_dark.xml.flat
│ │ │ │ │ ├── drawable_abc_list_selector_holo_light.xml.flat
│ │ │ │ │ ├── drawable_abc_ratingbar_indicator_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ratingbar_material.xml.flat
│ │ │ │ │ ├── drawable_abc_ratingbar_small_material.xml.flat
│ │ │ │ │ ├── drawable_abc_seekbar_thumb_material.xml.flat
│ │ │ │ │ ├── drawable_abc_seekbar_tick_mark_material.xml.flat
│ │ │ │ │ ├── drawable_abc_seekbar_track_material.xml.flat
│ │ │ │ │ ├── drawable_abc_spinner_textfield_background_material.xml.flat
│ │ │ │ │ ├── drawable_abc_switch_thumb_material.xml.flat
│ │ │ │ │ ├── drawable_abc_tab_indicator_material.xml.flat
│ │ │ │ │ ├── drawable_abc_text_cursor_material.xml.flat
│ │ │ │ │ ├── drawable_abc_textfield_search_material.xml.flat
│ │ │ │ │ ├── drawable_abc_vector_test.xml.flat
│ │ │ │ │ ├── drawable_app_widget_preview.webp.flat
│ │ │ │ │ ├── drawable_button_text_color.xml.flat
│ │ │ │ │ ├── drawable_clear_search_view_bg.xml.flat
│ │ │ │ │ ├── drawable_common_google_signin_btn_icon_dark.xml.flat
│ │ │ │ │ ├── drawable_common_google_signin_btn_icon_light.xml.flat
│ │ │ │ │ ├── drawable_common_google_signin_btn_text_dark.xml.flat
│ │ │ │ │ ├── drawable_common_google_signin_btn_text_light.xml.flat
│ │ │ │ │ ├── drawable_common_plus_signin_btn_icon_dark.xml.flat
│ │ │ │ │ ├── drawable_common_plus_signin_btn_icon_light.xml.flat
│ │ │ │ │ ├── drawable_common_plus_signin_btn_text_dark.xml.flat
│ │ │ │ │ ├── drawable_common_plus_signin_btn_text_light.xml.flat
│ │ │ │ │ ├── drawable_day_status_active.xml.flat
│ │ │ │ │ ├── drawable_day_status_pendding.xml.flat
│ │ │ │ │ ├── drawable_design_fab_background.xml.flat
│ │ │ │ │ ├── drawable_design_snackbar_background.xml.flat
│ │ │ │ │ ├── drawable_ic_arrow_back_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_arrow_drop_down_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_arrow_drop_up_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_celsius_scale.xml.flat
│ │ │ │ │ ├── drawable_ic_cloud_with_electrical_lightning_storm.xml.flat
│ │ │ │ │ ├── drawable_ic_clouds_of_storm.xml.flat
│ │ │ │ │ ├── drawable_ic_compass_west_north.xml.flat
│ │ │ │ │ ├── drawable_ic_drizzle.xml.flat
│ │ │ │ │ ├── drawable_ic_erupting_volcano.xml.flat
│ │ │ │ │ ├── drawable_ic_fahrenheit_degree.xml.flat
│ │ │ │ │ ├── drawable_ic_foggy.xml.flat
│ │ │ │ │ ├── drawable_ic_go_back_left_arrow.xml.flat
│ │ │ │ │ ├── drawable_ic_golf_course_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_grain_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_humidity.xml.flat
│ │ │ │ │ ├── drawable_ic_info_outline.xml.flat
│ │ │ │ │ ├── drawable_ic_launcher_background.xml.flat
│ │ │ │ │ ├── drawable_ic_location.xml.flat
│ │ │ │ │ ├── drawable_ic_map.xml.flat
│ │ │ │ │ ├── drawable_ic_menu_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_mic_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_pool_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_rain_cloud_black.xml.flat
│ │ │ │ │ ├── drawable_ic_rain_perception.xml.flat
│ │ │ │ │ ├── drawable_ic_raindrops_of_rain_falling_of_dark_cloud.xml.flat
│ │ │ │ │ ├── drawable_ic_sea.xml.flat
│ │ │ │ │ ├── drawable_ic_search.xml.flat
│ │ │ │ │ ├── drawable_ic_settings.xml.flat
│ │ │ │ │ ├── drawable_ic_share.xml.flat
│ │ │ │ │ ├── drawable_ic_snow_cloud.xml.flat
│ │ │ │ │ ├── drawable_ic_snow_storm_day_symbol_of_winter_weather.xml.flat
│ │ │ │ │ ├── drawable_ic_snow_storm_day_winter_weather.xml.flat
│ │ │ │ │ ├── drawable_ic_snowflake.xml.flat
│ │ │ │ │ ├── drawable_ic_sun_black_symboi.xml.flat
│ │ │ │ │ ├── drawable_ic_thunderstrome_light_rain.xml.flat
│ │ │ │ │ ├── drawable_ic_tornado_weather_symbol_of_interface.xml.flat
│ │ │ │ │ ├── drawable_ic_touch_app_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_warning_black_24dp.xml.flat
│ │ │ │ │ ├── drawable_ic_wind_sock.xml.flat
│ │ │ │ │ ├── drawable_navigation_empty_icon.xml.flat
│ │ │ │ │ ├── drawable_notification_bg.xml.flat
│ │ │ │ │ ├── drawable_notification_bg_low.xml.flat
│ │ │ │ │ ├── drawable_notification_icon_background.xml.flat
│ │ │ │ │ ├── drawable_notification_tile_bg.xml.flat
│ │ │ │ │ ├── drawable_progress_dialog_bg.xml.flat
│ │ │ │ │ ├── drawable_radio_checked.xml.flat
│ │ │ │ │ ├── drawable_radio_unchecked.xml.flat
│ │ │ │ │ ├── drawable_rain.webp.flat
│ │ │ │ │ ├── drawable_search_view_bg.xml.flat
│ │ │ │ │ ├── drawable_shadow.xml.flat
│ │ │ │ │ ├── drawable_shadow_right.xml.flat
│ │ │ │ │ ├── drawable_snow.webp.flat
│ │ │ │ │ ├── drawable_tooltip_frame_dark.xml.flat
│ │ │ │ │ ├── drawable_tooltip_frame_light.xml.flat
│ │ │ │ │ ├── drawable_widget_bg_view_bg.xml.flat
│ │ │ │ │ ├── font_lato_black.ttf.flat
│ │ │ │ │ ├── font_lato_bold.ttf.flat
│ │ │ │ │ ├── font_lato_italic.ttf.flat
│ │ │ │ │ ├── font_lato_light.ttf.flat
│ │ │ │ │ ├── font_lato_light_italic.ttf.flat
│ │ │ │ │ ├── font_lato_regular.ttf.flat
│ │ │ │ │ ├── layout-sw600dp-v13_design_layout_snackbar.xml.flat
│ │ │ │ │ ├── layout-v21_notification_action.xml.flat
│ │ │ │ │ ├── layout-v21_notification_action_tombstone.xml.flat
│ │ │ │ │ ├── layout-v21_notification_template_custom_big.xml.flat
│ │ │ │ │ ├── layout-v21_notification_template_icon_group.xml.flat
│ │ │ │ │ ├── layout-v21_place_autocomplete_fragment.xml.flat
│ │ │ │ │ ├── layout-v26_abc_screen_toolbar.xml.flat
│ │ │ │ │ ├── layout_abc_action_bar_title_item.xml.flat
│ │ │ │ │ ├── layout_abc_action_bar_up_container.xml.flat
│ │ │ │ │ ├── layout_abc_action_bar_view_list_nav_layout.xml.flat
│ │ │ │ │ ├── layout_abc_action_menu_item_layout.xml.flat
│ │ │ │ │ ├── layout_abc_action_menu_layout.xml.flat
│ │ │ │ │ ├── layout_abc_action_mode_bar.xml.flat
│ │ │ │ │ ├── layout_abc_action_mode_close_item_material.xml.flat
│ │ │ │ │ ├── layout_abc_activity_chooser_view.xml.flat
│ │ │ │ │ ├── layout_abc_activity_chooser_view_list_item.xml.flat
│ │ │ │ │ ├── layout_abc_alert_dialog_button_bar_material.xml.flat
│ │ │ │ │ ├── layout_abc_alert_dialog_material.xml.flat
│ │ │ │ │ ├── layout_abc_alert_dialog_title_material.xml.flat
│ │ │ │ │ ├── layout_abc_dialog_title_material.xml.flat
│ │ │ │ │ ├── layout_abc_expanded_menu_layout.xml.flat
│ │ │ │ │ ├── layout_abc_list_menu_item_checkbox.xml.flat
│ │ │ │ │ ├── layout_abc_list_menu_item_icon.xml.flat
│ │ │ │ │ ├── layout_abc_list_menu_item_layout.xml.flat
│ │ │ │ │ ├── layout_abc_list_menu_item_radio.xml.flat
│ │ │ │ │ ├── layout_abc_popup_menu_header_item_layout.xml.flat
│ │ │ │ │ ├── layout_abc_popup_menu_item_layout.xml.flat
│ │ │ │ │ ├── layout_abc_screen_content_include.xml.flat
│ │ │ │ │ ├── layout_abc_screen_simple.xml.flat
│ │ │ │ │ ├── layout_abc_screen_simple_overlay_action_mode.xml.flat
│ │ │ │ │ ├── layout_abc_screen_toolbar.xml.flat
│ │ │ │ │ ├── layout_abc_search_dropdown_item_icons_2line.xml.flat
│ │ │ │ │ ├── layout_abc_search_view.xml.flat
│ │ │ │ │ ├── layout_abc_select_dialog_material.xml.flat
│ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ ├── layout_activity_splash.xml.flat
│ │ │ │ │ ├── layout_alert_dialog_layout.xml.flat
│ │ │ │ │ ├── layout_alert_dialog_location.xml.flat
│ │ │ │ │ ├── layout_book_loading.xml.flat
│ │ │ │ │ ├── layout_bottomsheet_weather_details.xml.flat
│ │ │ │ │ ├── layout_clear_data_warning_dialog.xml.flat
│ │ │ │ │ ├── layout_design_bottom_navigation_item.xml.flat
│ │ │ │ │ ├── layout_design_bottom_sheet_dialog.xml.flat
│ │ │ │ │ ├── layout_design_layout_snackbar.xml.flat
│ │ │ │ │ ├── layout_design_layout_snackbar_include.xml.flat
│ │ │ │ │ ├── layout_design_layout_tab_icon.xml.flat
│ │ │ │ │ ├── layout_design_layout_tab_text.xml.flat
│ │ │ │ │ ├── layout_design_menu_item_action_area.xml.flat
│ │ │ │ │ ├── layout_design_navigation_item.xml.flat
│ │ │ │ │ ├── layout_design_navigation_item_header.xml.flat
│ │ │ │ │ ├── layout_design_navigation_item_separator.xml.flat
│ │ │ │ │ ├── layout_design_navigation_item_subheader.xml.flat
│ │ │ │ │ ├── layout_design_navigation_menu.xml.flat
│ │ │ │ │ ├── layout_design_navigation_menu_item.xml.flat
│ │ │ │ │ ├── layout_design_text_input_password_icon.xml.flat
│ │ │ │ │ ├── layout_fragment_about_app.xml.flat
│ │ │ │ │ ├── layout_fragment_main.xml.flat
│ │ │ │ │ ├── layout_leftmenu.xml.flat
│ │ │ │ │ ├── layout_newton_cradle_loading.xml.flat
│ │ │ │ │ ├── layout_notification_custom_content.xml.flat
│ │ │ │ │ ├── layout_notification_media_action.xml.flat
│ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat
│ │ │ │ │ ├── layout_notification_template_media.xml.flat
│ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_part_chronometer.xml.flat
│ │ │ │ │ ├── layout_notification_template_part_time.xml.flat
│ │ │ │ │ ├── layout_place_autocomplete_item_powered_by_google.xml.flat
│ │ │ │ │ ├── layout_place_autocomplete_item_prediction.xml.flat
│ │ │ │ │ ├── layout_place_autocomplete_progress.xml.flat
│ │ │ │ │ ├── layout_progress_util.xml.flat
│ │ │ │ │ ├── layout_row_forecast_item_view.xml.flat
│ │ │ │ │ ├── layout_row_menu_view.xml.flat
│ │ │ │ │ ├── layout_select_dialog_item_material.xml.flat
│ │ │ │ │ ├── layout_select_dialog_multichoice_material.xml.flat
│ │ │ │ │ ├── layout_select_dialog_singlechoice_material.xml.flat
│ │ │ │ │ ├── layout_settingmenu.xml.flat
│ │ │ │ │ ├── layout_support_simple_spinner_dropdown_item.xml.flat
│ │ │ │ │ ├── layout_toolbar.xml.flat
│ │ │ │ │ ├── layout_toolbar_ui.xml.flat
│ │ │ │ │ ├── layout_tooltip.xml.flat
│ │ │ │ │ ├── layout_view_horizontal_row.xml.flat
│ │ │ │ │ ├── layout_weather_forecasting_app_widget.xml.flat
│ │ │ │ │ ├── layout_widget_expandableitem.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_ws_launcher.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_ws_launcher_round.xml.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_background.webp.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_foreground.webp.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_ws_launcher.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_ws_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_background.webp.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_foreground.webp.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_ws_launcher.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_ws_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_background.webp.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_foreground.webp.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_ws_launcher.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_ws_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_background.webp.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_foreground.webp.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_ws_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_ws_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_background.webp.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_foreground.webp.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_ws_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_ws_launcher_round.png.flat
│ │ │ │ │ ├── values-af_values-af.arsc.flat
│ │ │ │ │ ├── values-am_values-am.arsc.flat
│ │ │ │ │ ├── values-ar_values-ar.arsc.flat
│ │ │ │ │ ├── values-az-rAZ_values-az-rAZ.arsc.flat
│ │ │ │ │ ├── values-az_values-az.arsc.flat
│ │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat
│ │ │ │ │ ├── values-be_values-be.arsc.flat
│ │ │ │ │ ├── values-bg_values-bg.arsc.flat
│ │ │ │ │ ├── values-bn-rBD_values-bn-rBD.arsc.flat
│ │ │ │ │ ├── values-bn_values-bn.arsc.flat
│ │ │ │ │ ├── values-bs_values-bs.arsc.flat
│ │ │ │ │ ├── values-ca_values-ca.arsc.flat
│ │ │ │ │ ├── values-cs_values-cs.arsc.flat
│ │ │ │ │ ├── values-da_values-da.arsc.flat
│ │ │ │ │ ├── values-de_values-de.arsc.flat
│ │ │ │ │ ├── values-el_values-el.arsc.flat
│ │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat
│ │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat
│ │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat
│ │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat
│ │ │ │ │ ├── values-es_values-es.arsc.flat
│ │ │ │ │ ├── values-et-rEE_values-et-rEE.arsc.flat
│ │ │ │ │ ├── values-et_values-et.arsc.flat
│ │ │ │ │ ├── values-eu-rES_values-eu-rES.arsc.flat
│ │ │ │ │ ├── values-eu_values-eu.arsc.flat
│ │ │ │ │ ├── values-fa_values-fa.arsc.flat
│ │ │ │ │ ├── values-fi_values-fi.arsc.flat
│ │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat
│ │ │ │ │ ├── values-fr_values-fr.arsc.flat
│ │ │ │ │ ├── values-gl-rES_values-gl-rES.arsc.flat
│ │ │ │ │ ├── values-gl_values-gl.arsc.flat
│ │ │ │ │ ├── values-gu-rIN_values-gu-rIN.arsc.flat
│ │ │ │ │ ├── values-gu_values-gu.arsc.flat
│ │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat
│ │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat
│ │ │ │ │ ├── values-hi_values-hi.arsc.flat
│ │ │ │ │ ├── values-hr_values-hr.arsc.flat
│ │ │ │ │ ├── values-hu_values-hu.arsc.flat
│ │ │ │ │ ├── values-hy-rAM_values-hy-rAM.arsc.flat
│ │ │ │ │ ├── values-hy_values-hy.arsc.flat
│ │ │ │ │ ├── values-in_values-in.arsc.flat
│ │ │ │ │ ├── values-is-rIS_values-is-rIS.arsc.flat
│ │ │ │ │ ├── values-is_values-is.arsc.flat
│ │ │ │ │ ├── values-it_values-it.arsc.flat
│ │ │ │ │ ├── values-iw_values-iw.arsc.flat
│ │ │ │ │ ├── values-ja_values-ja.arsc.flat
│ │ │ │ │ ├── values-ka-rGE_values-ka-rGE.arsc.flat
│ │ │ │ │ ├── values-ka_values-ka.arsc.flat
│ │ │ │ │ ├── values-kk-rKZ_values-kk-rKZ.arsc.flat
│ │ │ │ │ ├── values-kk_values-kk.arsc.flat
│ │ │ │ │ ├── values-km-rKH_values-km-rKH.arsc.flat
│ │ │ │ │ ├── values-km_values-km.arsc.flat
│ │ │ │ │ ├── values-kn-rIN_values-kn-rIN.arsc.flat
│ │ │ │ │ ├── values-kn_values-kn.arsc.flat
│ │ │ │ │ ├── values-ko_values-ko.arsc.flat
│ │ │ │ │ ├── values-ky-rKG_values-ky-rKG.arsc.flat
│ │ │ │ │ ├── values-ky_values-ky.arsc.flat
│ │ │ │ │ ├── values-land_values-land.arsc.flat
│ │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat
│ │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat
│ │ │ │ │ ├── values-lo-rLA_values-lo-rLA.arsc.flat
│ │ │ │ │ ├── values-lo_values-lo.arsc.flat
│ │ │ │ │ ├── values-lt_values-lt.arsc.flat
│ │ │ │ │ ├── values-lv_values-lv.arsc.flat
│ │ │ │ │ ├── values-mk-rMK_values-mk-rMK.arsc.flat
│ │ │ │ │ ├── values-mk_values-mk.arsc.flat
│ │ │ │ │ ├── values-ml-rIN_values-ml-rIN.arsc.flat
│ │ │ │ │ ├── values-ml_values-ml.arsc.flat
│ │ │ │ │ ├── values-mn-rMN_values-mn-rMN.arsc.flat
│ │ │ │ │ ├── values-mn_values-mn.arsc.flat
│ │ │ │ │ ├── values-mr-rIN_values-mr-rIN.arsc.flat
│ │ │ │ │ ├── values-mr_values-mr.arsc.flat
│ │ │ │ │ ├── values-ms-rMY_values-ms-rMY.arsc.flat
│ │ │ │ │ ├── values-ms_values-ms.arsc.flat
│ │ │ │ │ ├── values-my-rMM_values-my-rMM.arsc.flat
│ │ │ │ │ ├── values-my_values-my.arsc.flat
│ │ │ │ │ ├── values-nb_values-nb.arsc.flat
│ │ │ │ │ ├── values-ne-rNP_values-ne-rNP.arsc.flat
│ │ │ │ │ ├── values-ne_values-ne.arsc.flat
│ │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat
│ │ │ │ │ ├── values-nl_values-nl.arsc.flat
│ │ │ │ │ ├── values-pa-rIN_values-pa-rIN.arsc.flat
│ │ │ │ │ ├── values-pa_values-pa.arsc.flat
│ │ │ │ │ ├── values-pl_values-pl.arsc.flat
│ │ │ │ │ ├── values-port_values-port.arsc.flat
│ │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat
│ │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat
│ │ │ │ │ ├── values-pt_values-pt.arsc.flat
│ │ │ │ │ ├── values-ro_values-ro.arsc.flat
│ │ │ │ │ ├── values-ru_values-ru.arsc.flat
│ │ │ │ │ ├── values-si-rLK_values-si-rLK.arsc.flat
│ │ │ │ │ ├── values-si_values-si.arsc.flat
│ │ │ │ │ ├── values-sk_values-sk.arsc.flat
│ │ │ │ │ ├── values-sl_values-sl.arsc.flat
│ │ │ │ │ ├── values-sq-rAL_values-sq-rAL.arsc.flat
│ │ │ │ │ ├── values-sq_values-sq.arsc.flat
│ │ │ │ │ ├── values-sr_values-sr.arsc.flat
│ │ │ │ │ ├── values-sv_values-sv.arsc.flat
│ │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat
│ │ │ │ │ ├── values-sw_values-sw.arsc.flat
│ │ │ │ │ ├── values-ta-rIN_values-ta-rIN.arsc.flat
│ │ │ │ │ ├── values-ta_values-ta.arsc.flat
│ │ │ │ │ ├── values-te-rIN_values-te-rIN.arsc.flat
│ │ │ │ │ ├── values-te_values-te.arsc.flat
│ │ │ │ │ ├── values-th_values-th.arsc.flat
│ │ │ │ │ ├── values-tl_values-tl.arsc.flat
│ │ │ │ │ ├── values-tr_values-tr.arsc.flat
│ │ │ │ │ ├── values-uk_values-uk.arsc.flat
│ │ │ │ │ ├── values-ur-rPK_values-ur-rPK.arsc.flat
│ │ │ │ │ ├── values-ur_values-ur.arsc.flat
│ │ │ │ │ ├── values-uz-rUZ_values-uz-rUZ.arsc.flat
│ │ │ │ │ ├── values-uz_values-uz.arsc.flat
│ │ │ │ │ ├── values-v11_values-v11.arsc.flat
│ │ │ │ │ ├── values-v12_values-v12.arsc.flat
│ │ │ │ │ ├── values-v13_values-v13.arsc.flat
│ │ │ │ │ ├── values-v14_values-v14.arsc.flat
│ │ │ │ │ ├── values-v16_values-v16.arsc.flat
│ │ │ │ │ ├── values-v17_values-v17.arsc.flat
│ │ │ │ │ ├── values-v18_values-v18.arsc.flat
│ │ │ │ │ ├── values-v21_values-v21.arsc.flat
│ │ │ │ │ ├── values-v22_values-v22.arsc.flat
│ │ │ │ │ ├── values-v23_values-v23.arsc.flat
│ │ │ │ │ ├── values-v24_values-v24.arsc.flat
│ │ │ │ │ ├── values-v25_values-v25.arsc.flat
│ │ │ │ │ ├── values-v26_values-v26.arsc.flat
│ │ │ │ │ ├── values-vi_values-vi.arsc.flat
│ │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat
│ │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat
│ │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat
│ │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat
│ │ │ │ │ ├── values-zu_values-zu.arsc.flat
│ │ │ │ │ ├── values_values.arsc.flat
│ │ │ │ │ └── xml_weather_stream_widget.xml.flat
│ │ │ └── symbol-table-with-package
│ │ │ │ └── debug
│ │ │ │ └── package-aware-r.txt
│ │ ├── splits-support
│ │ │ └── debug
│ │ │ │ └── split-list.gson
│ │ ├── symbols
│ │ │ └── debug
│ │ │ │ └── R.txt
│ │ └── transforms
│ │ │ ├── dexBuilder
│ │ │ └── debug
│ │ │ │ ├── 41
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── design
│ │ │ │ │ │ ├── R$anim.dex
│ │ │ │ │ │ ├── R$animator.dex
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ ├── R.dex
│ │ │ │ │ │ │ └── animated
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── transition
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── appcompat
│ │ │ │ │ │ ├── R$anim.dex
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ └── recyclerview
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ ├── com
│ │ │ │ │ ├── crashlytics
│ │ │ │ │ │ └── android
│ │ │ │ │ │ │ ├── R.dex
│ │ │ │ │ │ │ ├── answers
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ │ ├── beta
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ │ └── core
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ ├── google
│ │ │ │ │ │ └── android
│ │ │ │ │ │ │ └── gms
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ ├── R.dex
│ │ │ │ │ │ │ ├── base
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ │ ├── location
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ │ └── maps
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ ├── quixom
│ │ │ │ │ │ └── apps
│ │ │ │ │ │ │ └── weatherstream
│ │ │ │ │ │ │ ├── BuildConfig.dex
│ │ │ │ │ │ │ ├── R$anim.dex
│ │ │ │ │ │ │ ├── R$animator.dex
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$bool.dex
│ │ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ │ ├── R$font.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$integer.dex
│ │ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ │ ├── R$mipmap.dex
│ │ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ ├── R$xml.dex
│ │ │ │ │ │ │ ├── R.dex
│ │ │ │ │ │ │ ├── model
│ │ │ │ │ │ │ ├── Clouds_Table.dex
│ │ │ │ │ │ │ ├── Coord_Table.dex
│ │ │ │ │ │ │ ├── ForecastList_Table.dex
│ │ │ │ │ │ │ ├── LocationSearchHistory_Table.dex
│ │ │ │ │ │ │ ├── Main_Table.dex
│ │ │ │ │ │ │ ├── Rain_Table.dex
│ │ │ │ │ │ │ ├── Sys_Table.dex
│ │ │ │ │ │ │ ├── WeatherData_Table.dex
│ │ │ │ │ │ │ ├── WeatherForecastData_Table.dex
│ │ │ │ │ │ │ ├── Weather_Table.dex
│ │ │ │ │ │ │ └── Wind_Table.dex
│ │ │ │ │ │ │ ├── slidingmenu
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$1.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$2.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$3.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$4.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$5.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder$6.dex
│ │ │ │ │ │ │ ├── CanvasTransformerBuilder.dex
│ │ │ │ │ │ │ ├── CustomViewAbove$1.dex
│ │ │ │ │ │ │ ├── CustomViewAbove$2.dex
│ │ │ │ │ │ │ ├── CustomViewAbove$OnPageChangeListener.dex
│ │ │ │ │ │ │ ├── CustomViewAbove$SimpleOnPageChangeListener.dex
│ │ │ │ │ │ │ ├── CustomViewAbove.dex
│ │ │ │ │ │ │ ├── CustomViewBehind.dex
│ │ │ │ │ │ │ ├── MenuInterface.dex
│ │ │ │ │ │ │ ├── SlidingMenu$1.dex
│ │ │ │ │ │ │ ├── SlidingMenu$2.dex
│ │ │ │ │ │ │ ├── SlidingMenu$CanvasTransformer.dex
│ │ │ │ │ │ │ ├── SlidingMenu$OnCloseListener.dex
│ │ │ │ │ │ │ ├── SlidingMenu$OnClosedListener.dex
│ │ │ │ │ │ │ ├── SlidingMenu$OnOpenListener.dex
│ │ │ │ │ │ │ ├── SlidingMenu$OnOpenedListener.dex
│ │ │ │ │ │ │ ├── SlidingMenu$SavedState$1.dex
│ │ │ │ │ │ │ ├── SlidingMenu$SavedState.dex
│ │ │ │ │ │ │ └── SlidingMenu.dex
│ │ │ │ │ │ │ └── weatherview
│ │ │ │ │ │ │ ├── confetti
│ │ │ │ │ │ │ ├── ConfettiManager$1.dex
│ │ │ │ │ │ │ ├── ConfettiManager$2.dex
│ │ │ │ │ │ │ └── ConfettiManager.dex
│ │ │ │ │ │ │ └── confetto
│ │ │ │ │ │ │ └── Confetto.dex
│ │ │ │ │ ├── raizlabs
│ │ │ │ │ │ └── android
│ │ │ │ │ │ │ └── dbflow
│ │ │ │ │ │ │ ├── R.dex
│ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ ├── GeneratedDatabaseHolder.dex
│ │ │ │ │ │ │ └── WeatherStreamDBWeatherStreamDB_Database.dex
│ │ │ │ │ │ │ └── kotlinextensions
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ └── victor
│ │ │ │ │ │ └── loading
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ ├── info
│ │ │ │ │ └── hoang8f
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── segmented
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$color.dex
│ │ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ │ ├── R$string.dex
│ │ │ │ │ │ ├── R$style.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ └── io
│ │ │ │ │ └── fabric
│ │ │ │ │ └── sdk
│ │ │ │ │ └── android
│ │ │ │ │ └── R.dex
│ │ │ │ ├── 42
│ │ │ │ └── com
│ │ │ │ │ ├── github
│ │ │ │ │ └── matteobattilana
│ │ │ │ │ │ └── weather
│ │ │ │ │ │ ├── EnumConstants.dex
│ │ │ │ │ │ ├── PrecipType$CLEAR.dex
│ │ │ │ │ │ ├── PrecipType$RAIN.dex
│ │ │ │ │ │ ├── PrecipType$SNOW.dex
│ │ │ │ │ │ ├── PrecipType.dex
│ │ │ │ │ │ ├── WeatherDataAnim.dex
│ │ │ │ │ │ ├── WeatherViewSensorEventListener.dex
│ │ │ │ │ │ └── confetti
│ │ │ │ │ │ ├── MotionBlurBitmapConfetto$Companion.dex
│ │ │ │ │ │ ├── MotionBlurBitmapConfetto$WhenMappings.dex
│ │ │ │ │ │ ├── MotionBlurBitmapConfetto.dex
│ │ │ │ │ │ └── WeatherConfettoGenerator.dex
│ │ │ │ │ └── quixom
│ │ │ │ │ └── apps
│ │ │ │ │ └── weatherstream
│ │ │ │ │ ├── MainActivity$callSearchLocationApi$1.dex
│ │ │ │ │ ├── MainActivity$callWeatherForecasting$1.dex
│ │ │ │ │ ├── MainActivity$confirmClearSearchHistory$1.dex
│ │ │ │ │ ├── MainActivity$confirmClearSearchHistory$2.dex
│ │ │ │ │ ├── MainActivity$onActivityResult$1.dex
│ │ │ │ │ ├── MainActivity.dex
│ │ │ │ │ ├── Methods$Companion$avoidDoubleClicks$2.dex
│ │ │ │ │ ├── Methods$Companion.dex
│ │ │ │ │ ├── Methods.dex
│ │ │ │ │ ├── WeatherStreamApp$activityLifecycleCallbacks$1.dex
│ │ │ │ │ ├── WeatherStreamApp.dex
│ │ │ │ │ ├── activity
│ │ │ │ │ ├── SplashActivity$checkGpsEnabledAndPrompt$1.dex
│ │ │ │ │ ├── SplashActivity$checkGpsEnabledAndPrompt$2.dex
│ │ │ │ │ ├── SplashActivity$mLocationListener$1$onLocationChanged$1.dex
│ │ │ │ │ ├── SplashActivity$mLocationListener$1$onProviderDisabled$1.dex
│ │ │ │ │ ├── SplashActivity$mLocationListener$1.dex
│ │ │ │ │ ├── SplashActivity$onCreate$1.dex
│ │ │ │ │ └── SplashActivity.dex
│ │ │ │ │ ├── adapters
│ │ │ │ │ ├── ForecastItemAdapter$ViewHolder.dex
│ │ │ │ │ ├── ForecastItemAdapter$onBindViewHolder$1.dex
│ │ │ │ │ ├── ForecastItemAdapter.dex
│ │ │ │ │ ├── LocationHistoryAdapter$LocationVH.dex
│ │ │ │ │ ├── LocationHistoryAdapter$onBindViewHolder$1$1.dex
│ │ │ │ │ ├── LocationHistoryAdapter$onBindViewHolder$1.dex
│ │ │ │ │ └── LocationHistoryAdapter.dex
│ │ │ │ │ ├── dbconfig
│ │ │ │ │ ├── UpgradeData.dex
│ │ │ │ │ ├── WeatherStreamDB$Companion.dex
│ │ │ │ │ └── WeatherStreamDB.dex
│ │ │ │ │ ├── fragments
│ │ │ │ │ ├── AboutAppFragment.dex
│ │ │ │ │ ├── BaseFragment$onActivityCreated$1.dex
│ │ │ │ │ ├── BaseFragment.dex
│ │ │ │ │ ├── MainFragment$addWeatherStreamCallBack$1.dex
│ │ │ │ │ ├── MainFragment$showInfoDialog$1.dex
│ │ │ │ │ └── MainFragment.dex
│ │ │ │ │ ├── model
│ │ │ │ │ ├── LocationSearchHistory$Companion.dex
│ │ │ │ │ ├── LocationSearchHistory.dex
│ │ │ │ │ ├── WeatherData$Clouds$Companion.dex
│ │ │ │ │ ├── WeatherData$Clouds.dex
│ │ │ │ │ ├── WeatherData$Companion.dex
│ │ │ │ │ ├── WeatherData$Coord$Companion.dex
│ │ │ │ │ ├── WeatherData$Coord.dex
│ │ │ │ │ ├── WeatherData$Main$Companion.dex
│ │ │ │ │ ├── WeatherData$Main.dex
│ │ │ │ │ ├── WeatherData$Sys$Companion.dex
│ │ │ │ │ ├── WeatherData$Sys.dex
│ │ │ │ │ ├── WeatherData$Weather$Companion.dex
│ │ │ │ │ ├── WeatherData$Weather.dex
│ │ │ │ │ ├── WeatherData$Wind$Companion.dex
│ │ │ │ │ ├── WeatherData$Wind.dex
│ │ │ │ │ ├── WeatherData.dex
│ │ │ │ │ ├── WeatherForecastData$City.dex
│ │ │ │ │ ├── WeatherForecastData$Companion.dex
│ │ │ │ │ ├── WeatherForecastData$ForecastList$Companion.dex
│ │ │ │ │ ├── WeatherForecastData$ForecastList.dex
│ │ │ │ │ ├── WeatherForecastData$Rain$Companion.dex
│ │ │ │ │ ├── WeatherForecastData$Rain.dex
│ │ │ │ │ ├── WeatherForecastData.dex
│ │ │ │ │ └── WeatherViewItem.dex
│ │ │ │ │ ├── services
│ │ │ │ │ ├── WeatherWidgetService$callSearchLocationServiceApi$1.dex
│ │ │ │ │ ├── WeatherWidgetService$callWeatherForecasting$1.dex
│ │ │ │ │ ├── WeatherWidgetService$onStartCommand$hourlyTask$1.dex
│ │ │ │ │ └── WeatherWidgetService.dex
│ │ │ │ │ ├── utilities
│ │ │ │ │ ├── ConnectionChecker.dex
│ │ │ │ │ ├── CustomTypefaceSpan.dex
│ │ │ │ │ ├── DateUtil$chooseDate$datePickerDialog$1.dex
│ │ │ │ │ ├── DateUtil.dex
│ │ │ │ │ ├── DegreeToWindDirection.dex
│ │ │ │ │ ├── FragmentUtil.dex
│ │ │ │ │ ├── KeyUtil.dex
│ │ │ │ │ ├── LocalNotification.dex
│ │ │ │ │ ├── PreferenceUtil.dex
│ │ │ │ │ ├── ThemeSwitcher$Companion.dex
│ │ │ │ │ ├── ThemeSwitcher.dex
│ │ │ │ │ ├── WSProgressDialog$Companion.dex
│ │ │ │ │ ├── WSProgressDialog.dex
│ │ │ │ │ ├── WeatherStreamCallback.dex
│ │ │ │ │ ├── WeatherStreamCallbackManager$Companion.dex
│ │ │ │ │ ├── WeatherStreamCallbackManager.dex
│ │ │ │ │ └── WeatherToImage.dex
│ │ │ │ │ ├── weatherview
│ │ │ │ │ ├── WeatherView$1.dex
│ │ │ │ │ ├── WeatherView$Companion.dex
│ │ │ │ │ ├── WeatherView.dex
│ │ │ │ │ └── confetti
│ │ │ │ │ │ ├── ConfettiSource.dex
│ │ │ │ │ │ ├── ConfettiView$Companion.dex
│ │ │ │ │ │ ├── ConfettiView.dex
│ │ │ │ │ │ ├── ConfettoGenerator.dex
│ │ │ │ │ │ ├── ConfettoInfo.dex
│ │ │ │ │ │ └── MutableRectSource.dex
│ │ │ │ │ ├── webservice
│ │ │ │ │ ├── APIError.dex
│ │ │ │ │ ├── APIParameters$ForecastingWeather$Companion.dex
│ │ │ │ │ ├── APIParameters$ForecastingWeather.dex
│ │ │ │ │ ├── APIParameters$LocationSearch$Companion.dex
│ │ │ │ │ ├── APIParameters$LocationSearch.dex
│ │ │ │ │ ├── APIParameters.dex
│ │ │ │ │ ├── APIUtil.dex
│ │ │ │ │ ├── ErrorHandler.dex
│ │ │ │ │ ├── NetworkConfig$Companion.dex
│ │ │ │ │ ├── NetworkConfig.dex
│ │ │ │ │ └── WebApis.dex
│ │ │ │ │ └── widgets
│ │ │ │ │ ├── StickySwitch$AnimationType.dex
│ │ │ │ │ ├── StickySwitch$Direction.dex
│ │ │ │ │ ├── StickySwitch$OnSelectedChangeListener.dex
│ │ │ │ │ ├── StickySwitch$TextVisibility.dex
│ │ │ │ │ ├── StickySwitch$WhenMappings.dex
│ │ │ │ │ ├── StickySwitch$getBounceAnimator$1.dex
│ │ │ │ │ ├── StickySwitch$getLiquidAnimator$1.dex
│ │ │ │ │ ├── StickySwitch$leftTextAlphaAnimator$1.dex
│ │ │ │ │ ├── StickySwitch$leftTextSizeAnimator$1.dex
│ │ │ │ │ ├── StickySwitch$rightTextAlphaAnimator$1.dex
│ │ │ │ │ ├── StickySwitch$rightTextSizeAnimator$1.dex
│ │ │ │ │ ├── StickySwitch.dex
│ │ │ │ │ └── WeatherStreamAppWidget.dex
│ │ │ │ ├── 0.jar
│ │ │ │ ├── 1.jar
│ │ │ │ ├── 10.jar
│ │ │ │ ├── 11.jar
│ │ │ │ ├── 12.jar
│ │ │ │ ├── 13.jar
│ │ │ │ ├── 14.jar
│ │ │ │ ├── 15.jar
│ │ │ │ ├── 16.jar
│ │ │ │ ├── 17.jar
│ │ │ │ ├── 18.jar
│ │ │ │ ├── 19.jar
│ │ │ │ ├── 2.jar
│ │ │ │ ├── 20.jar
│ │ │ │ ├── 21.jar
│ │ │ │ ├── 22.jar
│ │ │ │ ├── 23.jar
│ │ │ │ ├── 24.jar
│ │ │ │ ├── 25.jar
│ │ │ │ ├── 26.jar
│ │ │ │ ├── 27.jar
│ │ │ │ ├── 28.jar
│ │ │ │ ├── 29.jar
│ │ │ │ ├── 3.jar
│ │ │ │ ├── 30.jar
│ │ │ │ ├── 31.jar
│ │ │ │ ├── 32.jar
│ │ │ │ ├── 33.jar
│ │ │ │ ├── 34.jar
│ │ │ │ ├── 35.jar
│ │ │ │ ├── 36.jar
│ │ │ │ ├── 37.jar
│ │ │ │ ├── 38.jar
│ │ │ │ ├── 39.jar
│ │ │ │ ├── 4.jar
│ │ │ │ ├── 40.jar
│ │ │ │ ├── 5.jar
│ │ │ │ ├── 6.jar
│ │ │ │ ├── 7.jar
│ │ │ │ ├── 8.jar
│ │ │ │ ├── 9.jar
│ │ │ │ └── __content__.json
│ │ │ ├── dexMerger
│ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── externalLibsDexMerger
│ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJavaRes
│ │ │ └── debug
│ │ │ │ ├── 0.jar
│ │ │ │ └── __content__.json
│ │ │ └── mergeJniLibs
│ │ │ └── debug
│ │ │ └── __content__.json
│ ├── kotlin
│ │ ├── compileDebugKotlin
│ │ │ ├── build-history.bin
│ │ │ ├── caches-jvm
│ │ │ │ ├── inputs
│ │ │ │ │ ├── source-snapshot.tab
│ │ │ │ │ ├── source-snapshot.tab.keystream
│ │ │ │ │ ├── source-snapshot.tab.keystream.len
│ │ │ │ │ ├── source-snapshot.tab.len
│ │ │ │ │ ├── source-snapshot.tab.values.at
│ │ │ │ │ ├── source-snapshot.tab_i
│ │ │ │ │ ├── source-snapshot.tab_i.len
│ │ │ │ │ ├── source-to-output.tab
│ │ │ │ │ ├── source-to-output.tab.keystream
│ │ │ │ │ ├── source-to-output.tab.keystream.len
│ │ │ │ │ ├── source-to-output.tab.len
│ │ │ │ │ ├── source-to-output.tab.values.at
│ │ │ │ │ ├── source-to-output.tab_i
│ │ │ │ │ └── source-to-output.tab_i.len
│ │ │ │ ├── jvm
│ │ │ │ │ └── kotlin
│ │ │ │ │ │ ├── class-fq-name-to-source.tab
│ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream
│ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len
│ │ │ │ │ │ ├── class-fq-name-to-source.tab.len
│ │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at
│ │ │ │ │ │ ├── class-fq-name-to-source.tab_i
│ │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len
│ │ │ │ │ │ ├── constants.tab
│ │ │ │ │ │ ├── constants.tab.keystream
│ │ │ │ │ │ ├── constants.tab.keystream.len
│ │ │ │ │ │ ├── constants.tab.len
│ │ │ │ │ │ ├── constants.tab.values.at
│ │ │ │ │ │ ├── constants.tab_i
│ │ │ │ │ │ ├── constants.tab_i.len
│ │ │ │ │ │ ├── internal-name-to-source.tab
│ │ │ │ │ │ ├── internal-name-to-source.tab.keystream
│ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len
│ │ │ │ │ │ ├── internal-name-to-source.tab.len
│ │ │ │ │ │ ├── internal-name-to-source.tab.values.at
│ │ │ │ │ │ ├── internal-name-to-source.tab_i
│ │ │ │ │ │ ├── internal-name-to-source.tab_i.len
│ │ │ │ │ │ ├── proto.tab
│ │ │ │ │ │ ├── proto.tab.keystream
│ │ │ │ │ │ ├── proto.tab.keystream.len
│ │ │ │ │ │ ├── proto.tab.len
│ │ │ │ │ │ ├── proto.tab.values
│ │ │ │ │ │ ├── proto.tab.values.at
│ │ │ │ │ │ ├── proto.tab.values.s
│ │ │ │ │ │ ├── proto.tab_i
│ │ │ │ │ │ ├── proto.tab_i.len
│ │ │ │ │ │ ├── source-to-classes.tab
│ │ │ │ │ │ ├── source-to-classes.tab.keystream
│ │ │ │ │ │ ├── source-to-classes.tab.keystream.len
│ │ │ │ │ │ ├── source-to-classes.tab.len
│ │ │ │ │ │ ├── source-to-classes.tab.values.at
│ │ │ │ │ │ ├── source-to-classes.tab_i
│ │ │ │ │ │ ├── source-to-classes.tab_i.len
│ │ │ │ │ │ ├── subtypes.tab
│ │ │ │ │ │ ├── subtypes.tab.keystream
│ │ │ │ │ │ ├── subtypes.tab.keystream.len
│ │ │ │ │ │ ├── subtypes.tab.len
│ │ │ │ │ │ ├── subtypes.tab.values.at
│ │ │ │ │ │ ├── subtypes.tab_i
│ │ │ │ │ │ ├── subtypes.tab_i.len
│ │ │ │ │ │ ├── supertypes.tab
│ │ │ │ │ │ ├── supertypes.tab.keystream
│ │ │ │ │ │ ├── supertypes.tab.keystream.len
│ │ │ │ │ │ ├── supertypes.tab.len
│ │ │ │ │ │ ├── supertypes.tab.values.at
│ │ │ │ │ │ ├── supertypes.tab_i
│ │ │ │ │ │ └── supertypes.tab_i.len
│ │ │ │ └── lookups
│ │ │ │ │ ├── counters.tab
│ │ │ │ │ ├── file-to-id.tab
│ │ │ │ │ ├── file-to-id.tab.keystream
│ │ │ │ │ ├── file-to-id.tab.keystream.len
│ │ │ │ │ ├── file-to-id.tab.len
│ │ │ │ │ ├── file-to-id.tab.values.at
│ │ │ │ │ ├── file-to-id.tab_i
│ │ │ │ │ ├── file-to-id.tab_i.len
│ │ │ │ │ ├── id-to-file.tab
│ │ │ │ │ ├── id-to-file.tab.keystream
│ │ │ │ │ ├── id-to-file.tab.keystream.len
│ │ │ │ │ ├── id-to-file.tab.len
│ │ │ │ │ ├── id-to-file.tab.values.at
│ │ │ │ │ ├── id-to-file.tab_i
│ │ │ │ │ ├── id-to-file.tab_i.len
│ │ │ │ │ ├── lookups.tab
│ │ │ │ │ ├── lookups.tab.keystream
│ │ │ │ │ ├── lookups.tab.keystream.len
│ │ │ │ │ ├── lookups.tab.len
│ │ │ │ │ ├── lookups.tab.values
│ │ │ │ │ ├── lookups.tab.values.at
│ │ │ │ │ ├── lookups.tab.values.s
│ │ │ │ │ ├── lookups.tab_i
│ │ │ │ │ └── lookups.tab_i.len
│ │ │ ├── data-container-format-version.txt
│ │ │ ├── format-version.txt
│ │ │ ├── gradle-format-version.txt
│ │ │ └── last-build.bin
│ │ └── kaptGenerateStubsDebugKotlin
│ │ │ ├── build-history.bin
│ │ │ ├── caches-jvm
│ │ │ ├── inputs
│ │ │ │ ├── source-snapshot.tab
│ │ │ │ ├── source-snapshot.tab.keystream
│ │ │ │ ├── source-snapshot.tab.keystream.len
│ │ │ │ ├── source-snapshot.tab.len
│ │ │ │ ├── source-snapshot.tab.values.at
│ │ │ │ ├── source-snapshot.tab_i
│ │ │ │ ├── source-snapshot.tab_i.len
│ │ │ │ ├── source-to-output.tab
│ │ │ │ ├── source-to-output.tab.keystream
│ │ │ │ ├── source-to-output.tab.keystream.len
│ │ │ │ ├── source-to-output.tab.len
│ │ │ │ ├── source-to-output.tab.values.at
│ │ │ │ ├── source-to-output.tab_i
│ │ │ │ └── source-to-output.tab_i.len
│ │ │ ├── jvm
│ │ │ │ └── kotlin
│ │ │ │ │ ├── class-fq-name-to-source.tab
│ │ │ │ │ ├── class-fq-name-to-source.tab.keystream
│ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len
│ │ │ │ │ ├── class-fq-name-to-source.tab.len
│ │ │ │ │ ├── class-fq-name-to-source.tab.values.at
│ │ │ │ │ ├── class-fq-name-to-source.tab_i
│ │ │ │ │ ├── class-fq-name-to-source.tab_i.len
│ │ │ │ │ ├── constants.tab
│ │ │ │ │ ├── constants.tab.keystream
│ │ │ │ │ ├── constants.tab.keystream.len
│ │ │ │ │ ├── constants.tab.len
│ │ │ │ │ ├── constants.tab.values.at
│ │ │ │ │ ├── constants.tab_i
│ │ │ │ │ ├── constants.tab_i.len
│ │ │ │ │ ├── internal-name-to-source.tab
│ │ │ │ │ ├── internal-name-to-source.tab.keystream
│ │ │ │ │ ├── internal-name-to-source.tab.keystream.len
│ │ │ │ │ ├── internal-name-to-source.tab.len
│ │ │ │ │ ├── internal-name-to-source.tab.values.at
│ │ │ │ │ ├── internal-name-to-source.tab_i
│ │ │ │ │ ├── internal-name-to-source.tab_i.len
│ │ │ │ │ ├── proto.tab
│ │ │ │ │ ├── proto.tab.keystream
│ │ │ │ │ ├── proto.tab.keystream.len
│ │ │ │ │ ├── proto.tab.len
│ │ │ │ │ ├── proto.tab.values
│ │ │ │ │ ├── proto.tab.values.at
│ │ │ │ │ ├── proto.tab.values.s
│ │ │ │ │ ├── proto.tab_i
│ │ │ │ │ ├── proto.tab_i.len
│ │ │ │ │ ├── source-to-classes.tab
│ │ │ │ │ ├── source-to-classes.tab.keystream
│ │ │ │ │ ├── source-to-classes.tab.keystream.len
│ │ │ │ │ ├── source-to-classes.tab.len
│ │ │ │ │ ├── source-to-classes.tab.values.at
│ │ │ │ │ ├── source-to-classes.tab_i
│ │ │ │ │ ├── source-to-classes.tab_i.len
│ │ │ │ │ ├── subtypes.tab
│ │ │ │ │ ├── subtypes.tab.keystream
│ │ │ │ │ ├── subtypes.tab.keystream.len
│ │ │ │ │ ├── subtypes.tab.len
│ │ │ │ │ ├── subtypes.tab.values.at
│ │ │ │ │ ├── subtypes.tab_i
│ │ │ │ │ ├── subtypes.tab_i.len
│ │ │ │ │ ├── supertypes.tab
│ │ │ │ │ ├── supertypes.tab.keystream
│ │ │ │ │ ├── supertypes.tab.keystream.len
│ │ │ │ │ ├── supertypes.tab.len
│ │ │ │ │ ├── supertypes.tab.values.at
│ │ │ │ │ ├── supertypes.tab_i
│ │ │ │ │ └── supertypes.tab_i.len
│ │ │ └── lookups
│ │ │ │ ├── counters.tab
│ │ │ │ ├── file-to-id.tab
│ │ │ │ ├── file-to-id.tab.keystream
│ │ │ │ ├── file-to-id.tab.keystream.len
│ │ │ │ ├── file-to-id.tab.len
│ │ │ │ ├── file-to-id.tab.values.at
│ │ │ │ ├── file-to-id.tab_i
│ │ │ │ ├── file-to-id.tab_i.len
│ │ │ │ ├── id-to-file.tab
│ │ │ │ ├── id-to-file.tab.keystream
│ │ │ │ ├── id-to-file.tab.keystream.len
│ │ │ │ ├── id-to-file.tab.len
│ │ │ │ ├── id-to-file.tab.values.at
│ │ │ │ ├── id-to-file.tab_i
│ │ │ │ ├── id-to-file.tab_i.len
│ │ │ │ ├── lookups.tab
│ │ │ │ ├── lookups.tab.keystream
│ │ │ │ ├── lookups.tab.keystream.len
│ │ │ │ ├── lookups.tab.len
│ │ │ │ ├── lookups.tab.values.at
│ │ │ │ ├── lookups.tab_i
│ │ │ │ └── lookups.tab_i.len
│ │ │ ├── data-container-format-version.txt
│ │ │ ├── format-version.txt
│ │ │ ├── gradle-format-version.txt
│ │ │ └── last-build.bin
│ ├── outputs
│ │ ├── apk
│ │ │ └── debug
│ │ │ │ ├── app-debug.apk
│ │ │ │ └── output.json
│ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ └── tmp
│ │ ├── kapt3
│ │ ├── incrementalData
│ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ ├── github
│ │ │ │ └── matteobattilana
│ │ │ │ │ └── weather
│ │ │ │ │ ├── EnumConstants.class
│ │ │ │ │ ├── PrecipType$CLEAR.class
│ │ │ │ │ ├── PrecipType$RAIN.class
│ │ │ │ │ ├── PrecipType$SNOW.class
│ │ │ │ │ ├── PrecipType.class
│ │ │ │ │ ├── WeatherDataAnim.class
│ │ │ │ │ ├── WeatherViewSensorEventListener.class
│ │ │ │ │ └── confetti
│ │ │ │ │ ├── MotionBlurBitmapConfetto$Companion.class
│ │ │ │ │ ├── MotionBlurBitmapConfetto.class
│ │ │ │ │ └── WeatherConfettoGenerator.class
│ │ │ │ └── quixom
│ │ │ │ └── apps
│ │ │ │ └── weatherstream
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── Methods$Companion.class
│ │ │ │ ├── Methods.class
│ │ │ │ ├── WeatherStreamApp.class
│ │ │ │ ├── activity
│ │ │ │ └── SplashActivity.class
│ │ │ │ ├── adapters
│ │ │ │ ├── ForecastItemAdapter$ViewHolder.class
│ │ │ │ ├── ForecastItemAdapter.class
│ │ │ │ ├── LocationHistoryAdapter$LocationVH.class
│ │ │ │ └── LocationHistoryAdapter.class
│ │ │ │ ├── dbconfig
│ │ │ │ ├── UpgradeData.class
│ │ │ │ ├── WeatherStreamDB$Companion.class
│ │ │ │ └── WeatherStreamDB.class
│ │ │ │ ├── fragments
│ │ │ │ ├── AboutAppFragment.class
│ │ │ │ ├── BaseFragment.class
│ │ │ │ └── MainFragment.class
│ │ │ │ ├── model
│ │ │ │ ├── LocationSearchHistory$Companion.class
│ │ │ │ ├── LocationSearchHistory.class
│ │ │ │ ├── WeatherData$Clouds$Companion.class
│ │ │ │ ├── WeatherData$Clouds.class
│ │ │ │ ├── WeatherData$Companion.class
│ │ │ │ ├── WeatherData$Coord$Companion.class
│ │ │ │ ├── WeatherData$Coord.class
│ │ │ │ ├── WeatherData$Main$Companion.class
│ │ │ │ ├── WeatherData$Main.class
│ │ │ │ ├── WeatherData$Sys$Companion.class
│ │ │ │ ├── WeatherData$Sys.class
│ │ │ │ ├── WeatherData$Weather$Companion.class
│ │ │ │ ├── WeatherData$Weather.class
│ │ │ │ ├── WeatherData$Wind$Companion.class
│ │ │ │ ├── WeatherData$Wind.class
│ │ │ │ ├── WeatherData.class
│ │ │ │ ├── WeatherForecastData$City.class
│ │ │ │ ├── WeatherForecastData$Companion.class
│ │ │ │ ├── WeatherForecastData$ForecastList$Companion.class
│ │ │ │ ├── WeatherForecastData$ForecastList.class
│ │ │ │ ├── WeatherForecastData$Rain$Companion.class
│ │ │ │ ├── WeatherForecastData$Rain.class
│ │ │ │ ├── WeatherForecastData.class
│ │ │ │ └── WeatherViewItem.class
│ │ │ │ ├── services
│ │ │ │ └── WeatherWidgetService.class
│ │ │ │ ├── utilities
│ │ │ │ ├── ConnectionChecker.class
│ │ │ │ ├── CustomTypefaceSpan.class
│ │ │ │ ├── DateUtil.class
│ │ │ │ ├── DegreeToWindDirection.class
│ │ │ │ ├── FragmentUtil.class
│ │ │ │ ├── KeyUtil.class
│ │ │ │ ├── LocalNotification.class
│ │ │ │ ├── PreferenceUtil.class
│ │ │ │ ├── ThemeSwitcher$Companion.class
│ │ │ │ ├── ThemeSwitcher.class
│ │ │ │ ├── WSProgressDialog$Companion.class
│ │ │ │ ├── WSProgressDialog.class
│ │ │ │ ├── WeatherStreamCallback.class
│ │ │ │ ├── WeatherStreamCallbackManager$Companion.class
│ │ │ │ ├── WeatherStreamCallbackManager.class
│ │ │ │ └── WeatherToImage.class
│ │ │ │ ├── weatherview
│ │ │ │ ├── WeatherView$Companion.class
│ │ │ │ ├── WeatherView.class
│ │ │ │ └── confetti
│ │ │ │ │ ├── ConfettiSource.class
│ │ │ │ │ ├── ConfettiView$Companion.class
│ │ │ │ │ ├── ConfettiView.class
│ │ │ │ │ ├── ConfettoGenerator.class
│ │ │ │ │ ├── ConfettoInfo.class
│ │ │ │ │ └── MutableRectSource.class
│ │ │ │ ├── webservice
│ │ │ │ ├── APIError.class
│ │ │ │ ├── APIParameters$ForecastingWeather$Companion.class
│ │ │ │ ├── APIParameters$ForecastingWeather.class
│ │ │ │ ├── APIParameters$LocationSearch$Companion.class
│ │ │ │ ├── APIParameters$LocationSearch.class
│ │ │ │ ├── APIParameters.class
│ │ │ │ ├── APIUtil.class
│ │ │ │ ├── ErrorHandler.class
│ │ │ │ ├── NetworkConfig$Companion.class
│ │ │ │ ├── NetworkConfig.class
│ │ │ │ └── WebApis.class
│ │ │ │ └── widgets
│ │ │ │ ├── StickySwitch$AnimationType.class
│ │ │ │ ├── StickySwitch$Direction.class
│ │ │ │ ├── StickySwitch$OnSelectedChangeListener.class
│ │ │ │ ├── StickySwitch$TextVisibility.class
│ │ │ │ ├── StickySwitch.class
│ │ │ │ └── WeatherStreamAppWidget.class
│ │ └── stubs
│ │ │ └── debug
│ │ │ ├── com
│ │ │ ├── github
│ │ │ │ └── matteobattilana
│ │ │ │ │ └── weather
│ │ │ │ │ ├── EnumConstants.java
│ │ │ │ │ ├── PrecipType.java
│ │ │ │ │ ├── WeatherDataAnim.java
│ │ │ │ │ ├── WeatherViewSensorEventListener.java
│ │ │ │ │ └── confetti
│ │ │ │ │ ├── MotionBlurBitmapConfetto.java
│ │ │ │ │ └── WeatherConfettoGenerator.java
│ │ │ └── quixom
│ │ │ │ └── apps
│ │ │ │ └── weatherstream
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── Methods.java
│ │ │ │ ├── WeatherStreamApp.java
│ │ │ │ ├── activity
│ │ │ │ └── SplashActivity.java
│ │ │ │ ├── adapters
│ │ │ │ ├── ForecastItemAdapter.java
│ │ │ │ └── LocationHistoryAdapter.java
│ │ │ │ ├── dbconfig
│ │ │ │ ├── UpgradeData.java
│ │ │ │ └── WeatherStreamDB.java
│ │ │ │ ├── fragments
│ │ │ │ ├── AboutAppFragment.java
│ │ │ │ ├── BaseFragment.java
│ │ │ │ └── MainFragment.java
│ │ │ │ ├── model
│ │ │ │ ├── LocationSearchHistory.java
│ │ │ │ ├── WeatherData.java
│ │ │ │ ├── WeatherForecastData.java
│ │ │ │ └── WeatherViewItem.java
│ │ │ │ ├── services
│ │ │ │ └── WeatherWidgetService.java
│ │ │ │ ├── utilities
│ │ │ │ ├── ConnectionChecker.java
│ │ │ │ ├── CustomTypefaceSpan.java
│ │ │ │ ├── DateUtil.java
│ │ │ │ ├── DegreeToWindDirection.java
│ │ │ │ ├── FragmentUtil.java
│ │ │ │ ├── KeyUtil.java
│ │ │ │ ├── LocalNotification.java
│ │ │ │ ├── PreferenceUtil.java
│ │ │ │ ├── ThemeSwitcher.java
│ │ │ │ ├── WSProgressDialog.java
│ │ │ │ ├── WeatherStreamCallback.java
│ │ │ │ ├── WeatherStreamCallbackManager.java
│ │ │ │ └── WeatherToImage.java
│ │ │ │ ├── weatherview
│ │ │ │ ├── WeatherView.java
│ │ │ │ └── confetti
│ │ │ │ │ ├── ConfettiSource.java
│ │ │ │ │ ├── ConfettiView.java
│ │ │ │ │ ├── ConfettoGenerator.java
│ │ │ │ │ ├── ConfettoInfo.java
│ │ │ │ │ └── MutableRectSource.java
│ │ │ │ ├── webservice
│ │ │ │ ├── APIError.java
│ │ │ │ ├── APIParameters.java
│ │ │ │ ├── APIUtil.java
│ │ │ │ ├── ErrorHandler.java
│ │ │ │ ├── NetworkConfig.java
│ │ │ │ └── WebApis.java
│ │ │ │ └── widgets
│ │ │ │ ├── StickySwitch.java
│ │ │ │ └── WeatherStreamAppWidget.java
│ │ │ └── error
│ │ │ └── NonExistentClass.java
│ │ └── kotlin-classes
│ │ └── debug
│ │ └── com
│ │ ├── github
│ │ └── matteobattilana
│ │ │ └── weather
│ │ │ ├── EnumConstants.class
│ │ │ ├── PrecipType$CLEAR.class
│ │ │ ├── PrecipType$RAIN.class
│ │ │ ├── PrecipType$SNOW.class
│ │ │ ├── PrecipType.class
│ │ │ ├── WeatherDataAnim.class
│ │ │ ├── WeatherViewSensorEventListener.class
│ │ │ └── confetti
│ │ │ ├── MotionBlurBitmapConfetto$Companion.class
│ │ │ ├── MotionBlurBitmapConfetto$WhenMappings.class
│ │ │ ├── MotionBlurBitmapConfetto.class
│ │ │ └── WeatherConfettoGenerator.class
│ │ └── quixom
│ │ └── apps
│ │ └── weatherstream
│ │ ├── MainActivity$callSearchLocationApi$1.class
│ │ ├── MainActivity$callWeatherForecasting$1.class
│ │ ├── MainActivity$confirmClearSearchHistory$1.class
│ │ ├── MainActivity$confirmClearSearchHistory$2.class
│ │ ├── MainActivity$onActivityResult$1.class
│ │ ├── MainActivity.class
│ │ ├── Methods$Companion$avoidDoubleClicks$2.class
│ │ ├── Methods$Companion.class
│ │ ├── Methods.class
│ │ ├── WeatherStreamApp$activityLifecycleCallbacks$1.class
│ │ ├── WeatherStreamApp.class
│ │ ├── activity
│ │ ├── SplashActivity$checkGpsEnabledAndPrompt$1.class
│ │ ├── SplashActivity$checkGpsEnabledAndPrompt$2.class
│ │ ├── SplashActivity$mLocationListener$1$onLocationChanged$1.class
│ │ ├── SplashActivity$mLocationListener$1$onProviderDisabled$1.class
│ │ ├── SplashActivity$mLocationListener$1.class
│ │ ├── SplashActivity$onCreate$1.class
│ │ └── SplashActivity.class
│ │ ├── adapters
│ │ ├── ForecastItemAdapter$ViewHolder.class
│ │ ├── ForecastItemAdapter$onBindViewHolder$1.class
│ │ ├── ForecastItemAdapter.class
│ │ ├── LocationHistoryAdapter$LocationVH.class
│ │ ├── LocationHistoryAdapter$onBindViewHolder$1$1.class
│ │ ├── LocationHistoryAdapter$onBindViewHolder$1.class
│ │ └── LocationHistoryAdapter.class
│ │ ├── dbconfig
│ │ ├── UpgradeData.class
│ │ ├── WeatherStreamDB$Companion.class
│ │ └── WeatherStreamDB.class
│ │ ├── fragments
│ │ ├── AboutAppFragment.class
│ │ ├── BaseFragment$onActivityCreated$1.class
│ │ ├── BaseFragment.class
│ │ ├── MainFragment$addWeatherStreamCallBack$1.class
│ │ ├── MainFragment$showInfoDialog$1.class
│ │ └── MainFragment.class
│ │ ├── model
│ │ ├── LocationSearchHistory$Companion.class
│ │ ├── LocationSearchHistory.class
│ │ ├── WeatherData$Clouds$Companion.class
│ │ ├── WeatherData$Clouds.class
│ │ ├── WeatherData$Companion.class
│ │ ├── WeatherData$Coord$Companion.class
│ │ ├── WeatherData$Coord.class
│ │ ├── WeatherData$Main$Companion.class
│ │ ├── WeatherData$Main.class
│ │ ├── WeatherData$Sys$Companion.class
│ │ ├── WeatherData$Sys.class
│ │ ├── WeatherData$Weather$Companion.class
│ │ ├── WeatherData$Weather.class
│ │ ├── WeatherData$Wind$Companion.class
│ │ ├── WeatherData$Wind.class
│ │ ├── WeatherData.class
│ │ ├── WeatherForecastData$City.class
│ │ ├── WeatherForecastData$Companion.class
│ │ ├── WeatherForecastData$ForecastList$Companion.class
│ │ ├── WeatherForecastData$ForecastList.class
│ │ ├── WeatherForecastData$Rain$Companion.class
│ │ ├── WeatherForecastData$Rain.class
│ │ ├── WeatherForecastData.class
│ │ └── WeatherViewItem.class
│ │ ├── services
│ │ ├── WeatherWidgetService$callSearchLocationServiceApi$1.class
│ │ ├── WeatherWidgetService$callWeatherForecasting$1.class
│ │ ├── WeatherWidgetService$onStartCommand$hourlyTask$1.class
│ │ └── WeatherWidgetService.class
│ │ ├── utilities
│ │ ├── ConnectionChecker.class
│ │ ├── CustomTypefaceSpan.class
│ │ ├── DateUtil$chooseDate$datePickerDialog$1.class
│ │ ├── DateUtil.class
│ │ ├── DegreeToWindDirection.class
│ │ ├── FragmentUtil.class
│ │ ├── KeyUtil.class
│ │ ├── LocalNotification.class
│ │ ├── PreferenceUtil.class
│ │ ├── ThemeSwitcher$Companion.class
│ │ ├── ThemeSwitcher.class
│ │ ├── WSProgressDialog$Companion.class
│ │ ├── WSProgressDialog.class
│ │ ├── WeatherStreamCallback.class
│ │ ├── WeatherStreamCallbackManager$Companion.class
│ │ ├── WeatherStreamCallbackManager.class
│ │ └── WeatherToImage.class
│ │ ├── weatherview
│ │ ├── WeatherView$1.class
│ │ ├── WeatherView$Companion.class
│ │ ├── WeatherView.class
│ │ └── confetti
│ │ │ ├── ConfettiSource.class
│ │ │ ├── ConfettiView$Companion.class
│ │ │ ├── ConfettiView.class
│ │ │ ├── ConfettoGenerator.class
│ │ │ ├── ConfettoInfo.class
│ │ │ └── MutableRectSource.class
│ │ ├── webservice
│ │ ├── APIError.class
│ │ ├── APIParameters$ForecastingWeather$Companion.class
│ │ ├── APIParameters$ForecastingWeather.class
│ │ ├── APIParameters$LocationSearch$Companion.class
│ │ ├── APIParameters$LocationSearch.class
│ │ ├── APIParameters.class
│ │ ├── APIUtil.class
│ │ ├── ErrorHandler.class
│ │ ├── NetworkConfig$Companion.class
│ │ ├── NetworkConfig.class
│ │ └── WebApis.class
│ │ └── widgets
│ │ ├── StickySwitch$AnimationType.class
│ │ ├── StickySwitch$Direction.class
│ │ ├── StickySwitch$OnSelectedChangeListener.class
│ │ ├── StickySwitch$TextVisibility.class
│ │ ├── StickySwitch$WhenMappings.class
│ │ ├── StickySwitch$getBounceAnimator$1.class
│ │ ├── StickySwitch$getLiquidAnimator$1.class
│ │ ├── StickySwitch$leftTextAlphaAnimator$1.class
│ │ ├── StickySwitch$leftTextSizeAnimator$1.class
│ │ ├── StickySwitch$rightTextAlphaAnimator$1.class
│ │ ├── StickySwitch$rightTextSizeAnimator$1.class
│ │ ├── StickySwitch.class
│ │ └── WeatherStreamAppWidget.class
├── google-services.json
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── quixom
│ │ └── apps
│ │ └── weatherstream
│ │ └── ExampleInstrumentedTest.kt
│ ├── main
│ ├── AndroidManifest.xml
│ ├── ic_ws_launcher-web.png
│ ├── java
│ │ └── com
│ │ │ └── quixom
│ │ │ └── apps
│ │ │ └── weatherstream
│ │ │ ├── MainActivity.kt
│ │ │ ├── Methods.kt
│ │ │ ├── WeatherStreamApp.kt
│ │ │ ├── activity
│ │ │ └── SplashActivity.kt
│ │ │ ├── adapters
│ │ │ ├── ForecastItemAdapter.kt
│ │ │ └── LocationHistoryAdapter.kt
│ │ │ ├── dbconfig
│ │ │ ├── UpgradeData.kt
│ │ │ └── WeatherStreamDB.kt
│ │ │ ├── fragments
│ │ │ ├── AboutAppFragment.kt
│ │ │ ├── BaseFragment.kt
│ │ │ └── MainFragment.kt
│ │ │ ├── helper
│ │ │ └── ThemeHelper.java
│ │ │ ├── model
│ │ │ ├── LocationSearchHistory.kt
│ │ │ ├── WeatherData.kt
│ │ │ ├── WeatherForecastData.kt
│ │ │ └── WeatherViewItem.kt
│ │ │ ├── services
│ │ │ └── WeatherWidgetService.kt
│ │ │ ├── slidingmenu
│ │ │ ├── CanvasTransformerBuilder.java
│ │ │ ├── CustomViewAbove.java
│ │ │ ├── CustomViewBehind.java
│ │ │ ├── MenuInterface.java
│ │ │ └── SlidingMenu.java
│ │ │ ├── utilities
│ │ │ ├── ConnectionChecker.kt
│ │ │ ├── CustomTypefaceSpan.kt
│ │ │ ├── DateUtil.kt
│ │ │ ├── DegreeToWindDirection.kt
│ │ │ ├── FragmentUtil.kt
│ │ │ ├── KeyUtil.kt
│ │ │ ├── LocalNotification.kt
│ │ │ ├── PreferenceUtil.kt
│ │ │ ├── WSProgressDialog.kt
│ │ │ ├── WeatherStreamCallback.kt
│ │ │ ├── WeatherStreamCallbackManager.kt
│ │ │ └── WeatherToImage.kt
│ │ │ ├── weatherview
│ │ │ ├── PrecipType.kt
│ │ │ ├── WeatherData.kt
│ │ │ ├── WeatherView.kt
│ │ │ ├── WeatherViewSensorEventListener.kt
│ │ │ ├── confetti
│ │ │ │ ├── ConfettiManager.java
│ │ │ │ ├── ConfettiSource.kt
│ │ │ │ ├── ConfettiView.kt
│ │ │ │ ├── ConfettoGenerator.kt
│ │ │ │ ├── ConfettoInfo.kt
│ │ │ │ ├── MutableRectSource.kt
│ │ │ │ └── WeatherConfettoGenerator.kt
│ │ │ └── confetto
│ │ │ │ └── Confetto.java
│ │ │ ├── webservice
│ │ │ ├── APIError.kt
│ │ │ ├── APIParameters.kt
│ │ │ ├── APIUtil.kt
│ │ │ ├── ErrorHandler.kt
│ │ │ ├── NetworkConfig.kt
│ │ │ └── WebApis.kt
│ │ │ └── widgets
│ │ │ ├── StickySwitch.kt
│ │ │ └── WeatherStreamAppWidget.kt
│ └── res
│ │ ├── anim
│ │ ├── activity_fad_out.xml
│ │ └── activity_fade_in.xml
│ │ ├── animator
│ │ ├── clockwise_rotation.xml
│ │ ├── clockwise_rotation_back.xml
│ │ ├── ic_menu_morph.xml
│ │ └── ic_menu_morph_back.xml
│ │ ├── color
│ │ └── text_selector_color.xml
│ │ ├── drawable-v24
│ │ └── ic_launcher_foreground.xml
│ │ ├── drawable
│ │ ├── app_widget_preview.webp
│ │ ├── clear_search_view_bg.xml
│ │ ├── day_status_active.xml
│ │ ├── day_status_pendding.xml
│ │ ├── ic_app_ic.webp
│ │ ├── ic_arrow_back_black_24dp.xml
│ │ ├── ic_arrow_drop_down_black_24dp.xml
│ │ ├── ic_arrow_drop_up_black_24dp.xml
│ │ ├── ic_celsius_scale.xml
│ │ ├── ic_cloud_with_electrical_lightning_storm.xml
│ │ ├── ic_clouds_of_storm.xml
│ │ ├── ic_compass_west_north.xml
│ │ ├── ic_drizzle.xml
│ │ ├── ic_erupting_volcano.xml
│ │ ├── ic_fahrenheit_degree.xml
│ │ ├── ic_foggy.xml
│ │ ├── ic_go_back_left_arrow.xml
│ │ ├── ic_golf_course_black_24dp.xml
│ │ ├── ic_grain_black_24dp.xml
│ │ ├── ic_humidity.xml
│ │ ├── ic_humidity_dark.xml
│ │ ├── ic_info_outline.xml
│ │ ├── ic_launcher_background.xml
│ │ ├── ic_location.xml
│ │ ├── ic_map.xml
│ │ ├── ic_menu_animatable.xml
│ │ ├── ic_menu_animatable_back.xml
│ │ ├── ic_menu_black_24dp.xml
│ │ ├── ic_menu_vector.xml
│ │ ├── ic_mic_black_24dp.xml
│ │ ├── ic_pool_black_24dp.xml
│ │ ├── ic_rain_cloud_black.xml
│ │ ├── ic_rain_perception.xml
│ │ ├── ic_rain_perception_dark.xml
│ │ ├── ic_raindrops_of_rain_falling_of_dark_cloud.xml
│ │ ├── ic_sea.xml
│ │ ├── ic_search.xml
│ │ ├── ic_settings.xml
│ │ ├── ic_share.xml
│ │ ├── ic_snow_cloud.xml
│ │ ├── ic_snow_storm_day_symbol_of_winter_weather.xml
│ │ ├── ic_snow_storm_day_winter_weather.xml
│ │ ├── ic_snowflake.xml
│ │ ├── ic_sun_black_symboi.xml
│ │ ├── ic_thunderstrome_light_rain.xml
│ │ ├── ic_tornado_weather_symbol_of_interface.xml
│ │ ├── ic_touch_app_black_24dp.xml
│ │ ├── ic_warning_black_24dp.xml
│ │ ├── ic_wind_sock.xml
│ │ ├── ic_wind_sock_dark.xml
│ │ ├── progress_dialog_bg.xml
│ │ ├── search_view_bg.xml
│ │ └── widget_bg_view_bg.xml
│ │ ├── font
│ │ ├── lato_black.ttf
│ │ ├── lato_bold.ttf
│ │ ├── lato_italic.ttf
│ │ ├── lato_light.ttf
│ │ ├── lato_light_italic.ttf
│ │ └── lato_regular.ttf
│ │ ├── layout
│ │ ├── activity_main.xml
│ │ ├── activity_splash.xml
│ │ ├── alert_dialog_layout.xml
│ │ ├── alert_dialog_location.xml
│ │ ├── bottomsheet_weather_details.xml
│ │ ├── clear_data_warning_dialog.xml
│ │ ├── fragment_about_app.xml
│ │ ├── fragment_main.xml
│ │ ├── leftmenu.xml
│ │ ├── notification_custom_content.xml
│ │ ├── progress_util.xml
│ │ ├── row_forecast_item_view.xml
│ │ ├── row_menu_view.xml
│ │ ├── settingmenu.xml
│ │ ├── toolbar.xml
│ │ ├── toolbar_ui.xml
│ │ ├── view_horizontal_row.xml
│ │ ├── weather_forecasting_app_widget.xml
│ │ └── widget_expandableitem.xml
│ │ ├── mipmap-hdpi
│ │ └── ic_ws_launcher.png
│ │ ├── mipmap-mdpi
│ │ └── ic_ws_launcher.png
│ │ ├── mipmap-xhdpi
│ │ └── ic_ws_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ └── ic_ws_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ └── ic_ws_launcher.png
│ │ ├── values-night
│ │ └── colors.xml
│ │ ├── values
│ │ ├── attrs.xml
│ │ ├── colors.xml
│ │ ├── dimen.xml
│ │ ├── ic_launcher_background.xml
│ │ ├── ids.xml
│ │ ├── public-attrs.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ │ └── xml
│ │ └── weather_stream_widget.xml
│ └── test
│ └── java
│ └── com
│ └── quixom
│ └── apps
│ └── weatherstream
│ └── ExampleUnitTest.kt
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
/app/build/generated/mockable-android-26.v3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/generated/mockable-android-26.v3.jar
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/compat/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/compat/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/constraint/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/constraint/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/constraint/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/constraint/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreui/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreui/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/coreutils/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/coreutils/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$anim.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$animator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$animator.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/design/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/design/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/fragment/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/fragment/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/mediacompat/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/mediacompat/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/transition/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/transition/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v4/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v4/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/cardview/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/cardview/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/crashlytics/android/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/crashlytics/android/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/crashlytics/android/answers/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/crashlytics/android/answers/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/crashlytics/android/beta/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/crashlytics/android/beta/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/crashlytics/android/core/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/crashlytics/android/core/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$drawable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/base/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/base/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/location/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/location/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/location/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/location/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$integer.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/google/android/gms/maps/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/google/android/gms/maps/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$anim.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$bool.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$font.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$font.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$style.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$xml.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R$xml.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/quixom/apps/weatherstream/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/raizlabs/android/dbflow/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/raizlabs/android/dbflow/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$color.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$dimen.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$id.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$layout.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$string.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R$styleable.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/com/victor/loading/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/com/victor/loading/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/info/hoang8f/android/segmented/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/info/hoang8f/android/segmented/R$attr.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/info/hoang8f/android/segmented/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/info/hoang8f/android/segmented/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/classes/debug/io/fabric/sdk/android/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/classes/debug/io/fabric/sdk/android/R.class
--------------------------------------------------------------------------------
/app/build/intermediates/incremental/compileDebugAidl/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state
--------------------------------------------------------------------------------
/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state
--------------------------------------------------------------------------------
/app/build/intermediates/javaPrecompile/debug/annotationProcessors.json:
--------------------------------------------------------------------------------
1 | ["dbflow-processor.jar (com.github.Raizlabs.DBFlow:dbflow-processor:4.1.2)"]
--------------------------------------------------------------------------------
/app/build/intermediates/manifests/density/debug/output.json:
--------------------------------------------------------------------------------
1 | []
--------------------------------------------------------------------------------
/app/build/intermediates/res/debug/resources-debug.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/debug/resources-debug.ap_
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_activity_fad_out.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_activity_fad_out.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_activity_fade_in.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_activity_fade_in.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_design_error.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_design_error.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/color_text_selector_color.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/color_text_selector_color.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-hdpi_places_ic_clear.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-hdpi_places_ic_clear.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-hdpi_places_ic_search.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-hdpi_places_ic_search.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-mdpi_places_ic_clear.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-mdpi_places_ic_clear.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-mdpi_places_ic_search.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-mdpi_places_ic_search.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-xhdpi_places_ic_clear.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-xhdpi_places_ic_clear.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-xhdpi_places_ic_search.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-xhdpi_places_ic_search.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable-xxhdpi_places_ic_clear.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable-xxhdpi_places_ic_clear.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_app_widget_preview.webp.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_app_widget_preview.webp.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_button_text_color.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_button_text_color.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_clear_search_view_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_clear_search_view_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_day_status_active.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_day_status_active.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_day_status_pendding.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_day_status_pendding.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_celsius_scale.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_celsius_scale.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_clouds_of_storm.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_clouds_of_storm.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_compass_west_north.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_compass_west_north.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_drizzle.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_drizzle.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_erupting_volcano.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_erupting_volcano.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_fahrenheit_degree.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_fahrenheit_degree.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_foggy.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_foggy.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_go_back_left_arrow.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_go_back_left_arrow.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_grain_black_24dp.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_grain_black_24dp.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_humidity.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_humidity.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_info_outline.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_info_outline.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_launcher_background.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_launcher_background.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_location.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_location.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_map.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_map.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_menu_black_24dp.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_menu_black_24dp.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_mic_black_24dp.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_mic_black_24dp.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_pool_black_24dp.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_pool_black_24dp.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_rain_cloud_black.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_rain_cloud_black.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_rain_perception.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_rain_perception.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_sea.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_sea.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_search.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_search.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_settings.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_settings.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_share.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_share.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_snow_cloud.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_snow_cloud.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_snowflake.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_snowflake.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_sun_black_symboi.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_sun_black_symboi.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_warning_black_24dp.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_warning_black_24dp.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_ic_wind_sock.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_ic_wind_sock.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_progress_dialog_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_progress_dialog_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_radio_checked.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_radio_checked.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_radio_unchecked.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_radio_unchecked.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_rain.webp.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_rain.webp.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_search_view_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_search_view_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_shadow.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_shadow.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_shadow_right.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_shadow_right.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_snow.webp.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_snow.webp.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/drawable_widget_bg_view_bg.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/drawable_widget_bg_view_bg.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_black.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_black.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_bold.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_bold.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_italic.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_italic.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_light.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_light.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_light_italic.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_light_italic.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/font_lato_regular.ttf.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/font_lato_regular.ttf.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_activity_main.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_activity_main.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_activity_splash.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_activity_splash.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_alert_dialog_layout.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_alert_dialog_layout.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_alert_dialog_location.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_alert_dialog_location.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_book_loading.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_book_loading.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_fragment_about_app.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_fragment_about_app.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_fragment_main.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_fragment_main.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_leftmenu.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_leftmenu.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_newton_cradle_loading.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_newton_cradle_loading.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_progress_util.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_progress_util.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_row_forecast_item_view.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_row_forecast_item_view.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_row_menu_view.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_row_menu_view.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_settingmenu.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_settingmenu.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_toolbar.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_toolbar.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_toolbar_ui.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_toolbar_ui.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_tooltip.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_tooltip.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_view_horizontal_row.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_view_horizontal_row.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/layout_widget_expandableitem.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/layout_widget_expandableitem.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_ws_launcher.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_ws_launcher.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_ws_launcher.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_ws_launcher.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_ws_launcher.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_ws_launcher.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_ws_launcher.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_ws_launcher.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_ws_launcher.png.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_ws_launcher.png.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-az-rAZ_values-az-rAZ.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-az-rAZ_values-az-rAZ.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-bn-rBD_values-bn-rBD.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-bn-rBD_values-bn-rBD.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-et-rEE_values-et-rEE.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-et-rEE_values-et-rEE.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-eu-rES_values-eu-rES.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-eu-rES_values-eu-rES.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-gl-rES_values-gl-rES.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-gl-rES_values-gl-rES.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-gu-rIN_values-gu-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-gu-rIN_values-gu-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hy-rAM_values-hy-rAM.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hy-rAM_values-hy-rAM.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-is-rIS_values-is-rIS.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-is-rIS_values-is-rIS.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ka-rGE_values-ka-rGE.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ka-rGE_values-ka-rGE.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-kk-rKZ_values-kk-rKZ.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-kk-rKZ_values-kk-rKZ.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-km-rKH_values-km-rKH.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-km-rKH_values-km-rKH.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-kn-rIN_values-kn-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-kn-rIN_values-kn-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ky-rKG_values-ky-rKG.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ky-rKG_values-ky-rKG.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-lo-rLA_values-lo-rLA.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-lo-rLA_values-lo-rLA.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mk-rMK_values-mk-rMK.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mk-rMK_values-mk-rMK.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ml-rIN_values-ml-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ml-rIN_values-ml-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mn-rMN_values-mn-rMN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mn-rMN_values-mn-rMN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mr-rIN_values-mr-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mr-rIN_values-mr-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ms-rMY_values-ms-rMY.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ms-rMY_values-ms-rMY.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-my-rMM_values-my-rMM.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-my-rMM_values-my-rMM.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ne-rNP_values-ne-rNP.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ne-rNP_values-ne-rNP.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pa-rIN_values-pa-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pa-rIN_values-pa-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-si-rLK_values-si-rLK.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-si-rLK_values-si-rLK.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sq-rAL_values-sq-rAL.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sq-rAL_values-sq-rAL.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ta-rIN_values-ta-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ta-rIN_values-ta-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-te-rIN_values-te-rIN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-te-rIN_values-te-rIN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ur-rPK_values-ur-rPK.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ur-rPK_values-ur-rPK.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-uz-rUZ_values-uz-rUZ.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-uz-rUZ_values-uz-rUZ.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/values_values.arsc.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/values_values.arsc.flat
--------------------------------------------------------------------------------
/app/build/intermediates/res/merged/debug/xml_weather_stream_widget.xml.flat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/res/merged/debug/xml_weather_stream_widget.xml.flat
--------------------------------------------------------------------------------
/app/build/intermediates/splits-support/debug/split-list.gson:
--------------------------------------------------------------------------------
1 | [{"splitType":"DENSITY","values":[]},{"splitType":"LANGUAGE","values":[]},{"splitType":"ABI","values":[]},{"splitType":"ResConfigs","values":["en"]}]
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/0.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/1.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/10.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/10.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/11.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/11.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/12.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/12.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/13.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/13.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/14.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/14.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/15.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/15.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/16.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/17.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/17.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/18.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/18.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/19.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/19.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/2.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/20.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/20.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/21.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/21.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/22.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/22.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/23.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/23.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/24.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/24.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/25.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/25.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/26.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/26.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/27.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/27.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/28.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/28.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/29.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/29.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/3.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/30.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/30.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/31.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/31.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/32.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/32.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/33.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/33.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/34.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/34.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/35.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/35.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/36.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/36.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/37.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/37.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/38.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/38.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/39.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/39.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/4.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/40.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/40.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/41/android/support/v4/R.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/41/android/support/v4/R.dex
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/41/com/victor/loading/R.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/41/com/victor/loading/R.dex
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/5.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/6.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/6.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/7.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/7.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/8.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexBuilder/debug/9.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexBuilder/debug/9.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/dexMerger/debug/0/classes.dex
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/dexMerger/debug/__content__.json:
--------------------------------------------------------------------------------
1 | [{"name":"main","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["DEX"],"format":"DIRECTORY","present":true}]
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json:
--------------------------------------------------------------------------------
1 | [{"name":"main","index":0,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}]
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json:
--------------------------------------------------------------------------------
1 | [{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["RESOURCES"],"format":"JAR","present":true}]
--------------------------------------------------------------------------------
/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json:
--------------------------------------------------------------------------------
1 | [{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}]
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/build-history.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/build-history.bin
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-snapshot.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len:
--------------------------------------------------------------------------------
1 | V
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len:
--------------------------------------------------------------------------------
1 | V
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.s
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab:
--------------------------------------------------------------------------------
1 | 47
2 | 0
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len:
--------------------------------------------------------------------------------
1 | /
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
�
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/data-container-format-version.txt:
--------------------------------------------------------------------------------
1 | 2011001
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/format-version.txt:
--------------------------------------------------------------------------------
1 | 8011001
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/gradle-format-version.txt:
--------------------------------------------------------------------------------
1 | 4011001
--------------------------------------------------------------------------------
/app/build/kotlin/compileDebugKotlin/last-build.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/compileDebugKotlin/last-build.bin
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-snapshot.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len:
--------------------------------------------------------------------------------
1 | V
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len:
--------------------------------------------------------------------------------
1 | V
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len:
--------------------------------------------------------------------------------
1 | V
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len:
--------------------------------------------------------------------------------
1 | �
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab:
--------------------------------------------------------------------------------
1 | 47
2 | 0
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len:
--------------------------------------------------------------------------------
1 | /
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len:
--------------------------------------------------------------------------------
1 | ^(
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/data-container-format-version.txt:
--------------------------------------------------------------------------------
1 | 2011001
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/format-version.txt:
--------------------------------------------------------------------------------
1 | 8011001
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/gradle-format-version.txt:
--------------------------------------------------------------------------------
1 | 4011001
--------------------------------------------------------------------------------
/app/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin
--------------------------------------------------------------------------------
/app/build/outputs/apk/debug/app-debug.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/outputs/apk/debug/app-debug.apk
--------------------------------------------------------------------------------
/app/build/outputs/apk/debug/output.json:
--------------------------------------------------------------------------------
1 | [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":5},"path":"app-debug.apk","properties":{"packageId":"com.quixom.apps.weatherstream","split":"","minSdkVersion":"21"}}]
--------------------------------------------------------------------------------
/app/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java:
--------------------------------------------------------------------------------
1 | package error;
2 |
3 | public final class NonExistentClass {
4 | }
--------------------------------------------------------------------------------
/app/build/tmp/kotlin-classes/debug/com/quixom/apps/weatherstream/Methods.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/build/tmp/kotlin-classes/debug/com/quixom/apps/weatherstream/Methods.class
--------------------------------------------------------------------------------
/app/src/main/ic_ws_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/ic_ws_launcher-web.png
--------------------------------------------------------------------------------
/app/src/main/java/com/quixom/apps/weatherstream/model/WeatherViewItem.kt:
--------------------------------------------------------------------------------
1 | package com.quixom.apps.weatherstream.model
2 |
3 | /**
4 | * Created by akif on 11/3/17.
5 | */
6 | class WeatherViewItem(val drawable: Int = 0, val title: String = "")
--------------------------------------------------------------------------------
/app/src/main/res/drawable/app_widget_preview.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/drawable/app_widget_preview.webp
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_app_ic.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/drawable/ic_app_ic.webp
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_black.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_bold.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_italic.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_light.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_light_italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_light_italic.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/lato_regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/font/lato_regular.ttf
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_ws_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/mipmap-hdpi/ic_ws_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_ws_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/mipmap-mdpi/ic_ws_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_ws_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/mipmap-xhdpi/ic_ws_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_ws_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/mipmap-xxhdpi/ic_ws_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_ws_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/app/src/main/res/mipmap-xxxhdpi/ic_ws_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/ids.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/QuixomTech/WeatherStream/19b2d811b346e138c2cffb4b485edd6cc573fb32/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------