├── fastscroll ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── res │ │ ├── drawable │ │ │ ├── fastscroll__default_handle.xml │ │ │ └── fastscroll__default_bubble.xml │ │ ├── layout │ │ │ └── fastscroll__default_bubble.xml │ │ ├── animator │ │ │ ├── fastscroll__default_show.xml │ │ │ └── fastscroll__default_hide.xml │ │ └── values │ │ │ └── values.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── vardemin │ │ └── fastscroll │ │ ├── SectionTitleProvider.kt │ │ ├── viewprovider │ │ ├── DefaultBubbleBehavior.kt │ │ ├── DefaultScrollViewProvider.kt │ │ ├── ScrollerViewProvider.kt │ │ └── VisibilityAnimationManager.kt │ │ ├── Utils.kt │ │ └── RecyclerViewScrollListener.kt ├── proguard-rules.pro └── build.gradle ├── materialcountrypicker ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── drawable │ │ │ ├── fo.png │ │ │ ├── gf.png │ │ │ ├── gl.png │ │ │ ├── im.png │ │ │ ├── ky.png │ │ │ ├── mo.png │ │ │ ├── mq.png │ │ │ ├── ms.png │ │ │ ├── nc.png │ │ │ ├── nu.png │ │ │ ├── pf.png │ │ │ ├── pm.png │ │ │ ├── pn.png │ │ │ ├── pr.png │ │ │ ├── ps.png │ │ │ ├── re.png │ │ │ ├── sx.png │ │ │ ├── tc.png │ │ │ ├── tk.png │ │ │ ├── vg.png │ │ │ ├── vi.png │ │ │ ├── wf.png │ │ │ ├── flag_transparent.png │ │ │ ├── picker_chip_bg.xml │ │ │ ├── flag_tp.xml │ │ │ ├── ccp_selectable_bg.xml │ │ │ ├── ic_arrow_drop_down.xml │ │ │ ├── ic_clear_black.xml │ │ │ ├── ic_search_black.xml │ │ │ └── ic_backspace_black_24dp.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── dimen.xml │ │ │ ├── color.xml │ │ │ ├── style.xml │ │ │ ├── strings.xml │ │ │ └── attrs.xml │ │ ├── drawable-nodpi │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── ao.png │ │ │ ├── aq.png │ │ │ ├── ar.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bl.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── fm.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gt.png │ │ │ ├── gw.png │ │ │ ├── gy.png │ │ │ ├── hk.png │ │ │ ├── hn.png │ │ │ ├── hr.png │ │ │ ├── ht.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── ie.png │ │ │ ├── il.png │ │ │ ├── in.png │ │ │ ├── iq.png │ │ │ ├── ir.png │ │ │ ├── is.png │ │ │ ├── it.png │ │ │ ├── jm.png │ │ │ ├── jo.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg.png │ │ │ ├── kh.png │ │ │ ├── ki.png │ │ │ ├── km.png │ │ │ ├── kn.png │ │ │ ├── kp.png │ │ │ ├── kr.png │ │ │ ├── ks.png │ │ │ ├── kw.png │ │ │ ├── kz.png │ │ │ ├── la.png │ │ │ ├── lb.png │ │ │ ├── lc.png │ │ │ ├── li.png │ │ │ ├── lk.png │ │ │ ├── lr.png │ │ │ ├── ls.png │ │ │ ├── lt.png │ │ │ ├── lu.png │ │ │ ├── lv.png │ │ │ ├── ly.png │ │ │ ├── ma.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me.png │ │ │ ├── mg.png │ │ │ ├── mh.png │ │ │ ├── mk.png │ │ │ ├── ml.png │ │ │ ├── mm.png │ │ │ ├── mn.png │ │ │ ├── mr.png │ │ │ ├── mt.png │ │ │ ├── mu.png │ │ │ ├── mv.png │ │ │ ├── mw.png │ │ │ ├── mx.png │ │ │ ├── my.png │ │ │ ├── mz.png │ │ │ ├── na.png │ │ │ ├── ne.png │ │ │ ├── ng.png │ │ │ ├── ni.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── np.png │ │ │ ├── nr.png │ │ │ ├── nz.png │ │ │ ├── om.png │ │ │ ├── pa.png │ │ │ ├── pe.png │ │ │ ├── pg.png │ │ │ ├── ph.png │ │ │ ├── pk.png │ │ │ ├── pl.png │ │ │ ├── pt.png │ │ │ ├── pw.png │ │ │ ├── py.png │ │ │ ├── qa.png │ │ │ ├── ro.png │ │ │ ├── rs.png │ │ │ ├── ru.png │ │ │ ├── rw.png │ │ │ ├── sa.png │ │ │ ├── sb.png │ │ │ ├── sc.png │ │ │ ├── sd.png │ │ │ ├── se.png │ │ │ ├── sg.png │ │ │ ├── si.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sm.png │ │ │ ├── sn.png │ │ │ ├── so.png │ │ │ ├── sr.png │ │ │ ├── st.png │ │ │ ├── sv.png │ │ │ ├── sy.png │ │ │ ├── sz.png │ │ │ ├── td.png │ │ │ ├── tg.png │ │ │ ├── th.png │ │ │ ├── tj.png │ │ │ ├── tl.png │ │ │ ├── tm.png │ │ │ ├── tn.png │ │ │ ├── to.png │ │ │ ├── tr.png │ │ │ ├── tt.png │ │ │ ├── tv.png │ │ │ ├── tw.png │ │ │ ├── tz.png │ │ │ ├── ua.png │ │ │ ├── ug.png │ │ │ ├── us.png │ │ │ ├── uy.png │ │ │ ├── uz.png │ │ │ ├── va.png │ │ │ ├── vc.png │ │ │ ├── ve.png │ │ │ ├── vn.png │ │ │ ├── vu.png │ │ │ ├── ws.png │ │ │ ├── ye.png │ │ │ ├── za.png │ │ │ ├── zm.png │ │ │ ├── zw.png │ │ │ └── _do.png │ │ ├── menu │ │ │ └── picker_dialog.xml │ │ └── layout │ │ │ ├── header.xml │ │ │ ├── activity_country_picker.xml │ │ │ ├── picker_view.xml │ │ │ ├── picker_ui.xml │ │ │ ├── item.xml │ │ │ └── dialog_country_picker.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── vardemin │ │ └── materialcountrypicker │ │ ├── Country.kt │ │ ├── CountryPicker.kt │ │ ├── CountryPickerDialog.kt │ │ ├── CountryPickerActivity.kt │ │ └── CountryPickerAdapter.kt ├── proguard-rules.pro └── build.gradle ├── sectionedrecycleradapter ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── vardemin │ │ └── sectionedrecycleradapter │ │ ├── ItemProvider.kt │ │ ├── ItemCoord.kt │ │ ├── SectionViewHolder.kt │ │ ├── PositionManager.kt │ │ └── SectionedRecyclerViewAdapter.kt ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── screenshots ├── screen1.jpg └── screen2.jpg ├── app ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_second.xml │ │ │ └── fragment_main.xml │ │ ├── navigation │ │ │ └── country_picker_navigation.xml │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ └── drawable │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── vardemin │ │ │ └── countrypicker │ │ │ ├── MainViewModel.kt │ │ │ ├── MainActivity.kt │ │ │ ├── PhoneEditConverter.kt │ │ │ ├── SecondFragment.kt │ │ │ └── MainFragment.kt │ │ └── AndroidManifest.xml ├── proguard-rules.pro ├── .gitignore └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── LICENSE.md ├── gradle.properties ├── .gitignore ├── gradlew.bat ├── gradlew └── README.md /fastscroll/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /materialcountrypicker/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sectionedrecycleradapter/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':materialcountrypicker', ':sectionedrecycleradapter', ':fastscroll' 2 | -------------------------------------------------------------------------------- /screenshots/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/screenshots/screen1.jpg -------------------------------------------------------------------------------- /screenshots/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/screenshots/screen2.jpg -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MaterialCountryPicker 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/fo.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/gf.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/gl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/im.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/ky.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/mo.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/mq.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/ms.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/nc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/nu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/pf.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/pm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/pn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/pr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/ps.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/re.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/sx.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/tc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/tk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/vg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/vi.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/wf.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastscroll/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ad.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ae.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/af.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ag.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ai.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/al.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/am.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ao.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/aq.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ar.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/at.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/au.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/aw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/az.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ba.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bb.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bd.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/be.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bf.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bh.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bi.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bj.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bo.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/br.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bs.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/by.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/bz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ca.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cd.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cf.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ch.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ci.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ck.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/co.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cv.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cx.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cy.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/cz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/de.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/dj.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/dk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/dm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/dz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ec.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ee.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/eg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/eh.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/er.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/es.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/et.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/fi.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/fj.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/fk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/fm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/fr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ga.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gb.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gd.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ge.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gh.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gi.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gq.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/gy.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/hk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/hn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/hr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ht.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/hu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/id.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ie.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/il.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/in.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/iq.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ir.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/is.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/it.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/jm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/jo.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/jp.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ke.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kh.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ki.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/km.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kp.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ks.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/kz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/la.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lb.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/li.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ls.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/lv.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ly.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ma.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/md.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/me.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mh.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ml.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mv.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mx.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/my.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/mz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/na.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ne.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ng.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ni.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/nl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/no.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/np.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/nr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/nz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/om.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pa.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pe.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ph.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/pw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/py.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/qa.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ro.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/rs.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ru.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/rw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sa.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sb.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sd.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/se.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/si.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sk.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/so.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/st.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sv.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sy.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/sz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/td.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tg.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/th.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tj.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tl.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/to.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tr.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tt.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tv.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/tz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ua.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ug.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/us.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/uy.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/uz.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/va.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/vc.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ve.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/vn.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/vu.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ws.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/ye.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/za.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/zm.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/zw.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable-nodpi/_do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable-nodpi/_do.png -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/flag_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vardemin/MaterialCountryPicker/HEAD/materialcountrypicker/src/main/res/drawable/flag_transparent.png -------------------------------------------------------------------------------- /sectionedrecycleradapter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 5dp 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Jul 08 15:34:08 MSK 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/vardemin/countrypicker/MainViewModel.kt: -------------------------------------------------------------------------------- 1 | package com.github.vardemin.countrypicker 2 | 3 | import androidx.databinding.ObservableArrayMap 4 | import androidx.lifecycle.ViewModel 5 | 6 | class MainViewModel: ViewModel() { 7 | val paramsMap = ObservableArrayMap() 8 | } -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fastscroll/src/main/res/drawable/fastscroll__default_handle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/picker_chip_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/flag_tp.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ccp_selectable_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #64b7b7b7 5 | #a2b7b7b7 6 | #64b7b7b7 7 | 8 | @android:color/secondary_text_light 9 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/vardemin/countrypicker/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.github.vardemin.countrypicker 2 | 3 | import androidx.appcompat.app.AppCompatActivity 4 | import android.os.Bundle 5 | 6 | class MainActivity : AppCompatActivity() { 7 | 8 | override fun onCreate(savedInstanceState: Bundle?) { 9 | super.onCreate(savedInstanceState) 10 | setContentView(R.layout.activity_main) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sectionedrecycleradapter/src/main/java/com/github/vardemin/sectionedrecycleradapter/ItemProvider.kt: -------------------------------------------------------------------------------- 1 | package com.github.vardemin.sectionedrecycleradapter 2 | 3 | import androidx.annotation.RestrictTo 4 | 5 | @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) 6 | interface ItemProvider { 7 | fun getSectionCount(): Int 8 | 9 | fun getItemCount(sectionIndex: Int): Int 10 | 11 | fun showHeadersForEmptySections(): Boolean 12 | 13 | fun showFooters(): Boolean 14 | } -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/drawable/ic_clear_black.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/menu/picker_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | 11 | -------------------------------------------------------------------------------- /fastscroll/src/main/res/drawable/fastscroll__default_bubble.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /materialcountrypicker/src/main/res/values/style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 |