├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── me │ │ └── ibrahimsn │ │ └── phonenumberkit │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.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 │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── art ├── ss1.jpg ├── ss2.jpg └── ss3.jpg ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── lib ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── countries.json │ ├── java │ └── me │ │ └── ibrahimsn │ │ └── lib │ │ ├── PhoneNumberKit.kt │ │ ├── api │ │ ├── Country.kt │ │ └── Phone.kt │ │ └── internal │ │ ├── core │ │ └── Proxy.kt │ │ ├── ext │ │ ├── CoroutineExt.kt │ │ ├── CountryExtensions.kt │ │ ├── Extensions.kt │ │ └── ViewExt.kt │ │ ├── io │ │ └── FileReader.kt │ │ ├── model │ │ └── State.kt │ │ ├── pattern │ │ ├── CountryPattern.kt │ │ └── Pattern.kt │ │ └── ui │ │ ├── CountryAdapter.kt │ │ ├── CountryPickerArguments.kt │ │ ├── CountryPickerBottomSheet.kt │ │ └── CountryPickerViewState.kt │ └── res │ ├── drawable-xhdpi │ ├── country_flag_ad.png │ ├── country_flag_ae.png │ ├── country_flag_af.png │ ├── country_flag_ag.png │ ├── country_flag_ai.png │ ├── country_flag_al.png │ ├── country_flag_am.png │ ├── country_flag_an.png │ ├── country_flag_ao.png │ ├── country_flag_aq.png │ ├── country_flag_ar.png │ ├── country_flag_as.png │ ├── country_flag_at.png │ ├── country_flag_au.png │ ├── country_flag_aw.png │ ├── country_flag_ax.png │ ├── country_flag_az.png │ ├── country_flag_ba.png │ ├── country_flag_bb.png │ ├── country_flag_bd.png │ ├── country_flag_be.png │ ├── country_flag_bf.png │ ├── country_flag_bg.png │ ├── country_flag_bh.png │ ├── country_flag_bi.png │ ├── country_flag_bj.png │ ├── country_flag_bl.png │ ├── country_flag_bm.png │ ├── country_flag_bn.png │ ├── country_flag_bo.png │ ├── country_flag_bq.png │ ├── country_flag_br.png │ ├── country_flag_bs.png │ ├── country_flag_bt.png │ ├── country_flag_bw.png │ ├── country_flag_by.png │ ├── country_flag_bz.png │ ├── country_flag_ca.png │ ├── country_flag_cc.png │ ├── country_flag_cd.png │ ├── country_flag_cf.png │ ├── country_flag_cg.png │ ├── country_flag_ch.png │ ├── country_flag_ci.png │ ├── country_flag_ck.png │ ├── country_flag_cl.png │ ├── country_flag_cm.png │ ├── country_flag_cn.png │ ├── country_flag_co.png │ ├── country_flag_cr.png │ ├── country_flag_cu.png │ ├── country_flag_cv.png │ ├── country_flag_cw.png │ ├── country_flag_cx.png │ ├── country_flag_cy.png │ ├── country_flag_cz.png │ ├── country_flag_de.png │ ├── country_flag_dj.png │ ├── country_flag_dk.png │ ├── country_flag_dm.png │ ├── country_flag_do.png │ ├── country_flag_dz.png │ ├── country_flag_ec.png │ ├── country_flag_ee.png │ ├── country_flag_eg.png │ ├── country_flag_eh.png │ ├── country_flag_er.png │ ├── country_flag_es.png │ ├── country_flag_et.png │ ├── country_flag_fi.png │ ├── country_flag_fj.png │ ├── country_flag_fk.png │ ├── country_flag_fm.png │ ├── country_flag_fo.png │ ├── country_flag_fr.png │ ├── country_flag_ga.png │ ├── country_flag_gb.png │ ├── country_flag_gd.png │ ├── country_flag_ge.png │ ├── country_flag_gf.png │ ├── country_flag_gg.png │ ├── country_flag_gh.png │ ├── country_flag_gi.png │ ├── country_flag_gl.png │ ├── country_flag_gm.png │ ├── country_flag_gn.png │ ├── country_flag_gp.png │ ├── country_flag_gq.png │ ├── country_flag_gr.png │ ├── country_flag_gs.png │ ├── country_flag_gt.png │ ├── country_flag_gu.png │ ├── country_flag_gw.png │ ├── country_flag_gy.png │ ├── country_flag_hk.png │ ├── country_flag_hn.png │ ├── country_flag_hr.png │ ├── country_flag_ht.png │ ├── country_flag_hu.png │ ├── country_flag_id.png │ ├── country_flag_ie.png │ ├── country_flag_il.png │ ├── country_flag_im.png │ ├── country_flag_in.png │ ├── country_flag_io.png │ ├── country_flag_iq.png │ ├── country_flag_ir.png │ ├── country_flag_is.png │ ├── country_flag_it.png │ ├── country_flag_je.png │ ├── country_flag_jm.png │ ├── country_flag_jo.png │ ├── country_flag_jp.png │ ├── country_flag_ke.png │ ├── country_flag_kg.png │ ├── country_flag_kh.png │ ├── country_flag_ki.png │ ├── country_flag_km.png │ ├── country_flag_kn.png │ ├── country_flag_kp.png │ ├── country_flag_kr.png │ ├── country_flag_kw.png │ ├── country_flag_ky.png │ ├── country_flag_kz.png │ ├── country_flag_la.png │ ├── country_flag_lb.png │ ├── country_flag_lc.png │ ├── country_flag_li.png │ ├── country_flag_lk.png │ ├── country_flag_lr.png │ ├── country_flag_ls.png │ ├── country_flag_lt.png │ ├── country_flag_lu.png │ ├── country_flag_lv.png │ ├── country_flag_ly.png │ ├── country_flag_ma.png │ ├── country_flag_mc.png │ ├── country_flag_md.png │ ├── country_flag_me.png │ ├── country_flag_mf.png │ ├── country_flag_mg.png │ ├── country_flag_mh.png │ ├── country_flag_mk.png │ ├── country_flag_ml.png │ ├── country_flag_mm.png │ ├── country_flag_mn.png │ ├── country_flag_mo.png │ ├── country_flag_mp.png │ ├── country_flag_mq.png │ ├── country_flag_mr.png │ ├── country_flag_ms.png │ ├── country_flag_mt.png │ ├── country_flag_mu.png │ ├── country_flag_mv.png │ ├── country_flag_mw.png │ ├── country_flag_mx.png │ ├── country_flag_my.png │ ├── country_flag_mz.png │ ├── country_flag_na.png │ ├── country_flag_nc.png │ ├── country_flag_ne.png │ ├── country_flag_nf.png │ ├── country_flag_ng.png │ ├── country_flag_ni.png │ ├── country_flag_nl.png │ ├── country_flag_no.png │ ├── country_flag_np.png │ ├── country_flag_nr.png │ ├── country_flag_nu.png │ ├── country_flag_nz.png │ ├── country_flag_om.png │ ├── country_flag_pa.png │ ├── country_flag_pe.png │ ├── country_flag_pf.png │ ├── country_flag_pg.png │ ├── country_flag_ph.png │ ├── country_flag_pk.png │ ├── country_flag_pl.png │ ├── country_flag_pm.png │ ├── country_flag_pn.png │ ├── country_flag_pr.png │ ├── country_flag_ps.png │ ├── country_flag_pt.png │ ├── country_flag_pw.png │ ├── country_flag_py.png │ ├── country_flag_qa.png │ ├── country_flag_re.png │ ├── country_flag_ro.png │ ├── country_flag_rs.png │ ├── country_flag_ru.png │ ├── country_flag_rw.png │ ├── country_flag_sa.png │ ├── country_flag_sb.png │ ├── country_flag_sc.png │ ├── country_flag_sd.png │ ├── country_flag_se.png │ ├── country_flag_sg.png │ ├── country_flag_sh.png │ ├── country_flag_si.png │ ├── country_flag_sj.png │ ├── country_flag_sk.png │ ├── country_flag_sl.png │ ├── country_flag_sm.png │ ├── country_flag_sn.png │ ├── country_flag_so.png │ ├── country_flag_sr.png │ ├── country_flag_ss.png │ ├── country_flag_st.png │ ├── country_flag_sv.png │ ├── country_flag_sx.png │ ├── country_flag_sy.png │ ├── country_flag_sz.png │ ├── country_flag_tc.png │ ├── country_flag_td.png │ ├── country_flag_tf.png │ ├── country_flag_tg.png │ ├── country_flag_th.png │ ├── country_flag_tj.png │ ├── country_flag_tk.png │ ├── country_flag_tl.png │ ├── country_flag_tm.png │ ├── country_flag_tn.png │ ├── country_flag_to.png │ ├── country_flag_tr.png │ ├── country_flag_tt.png │ ├── country_flag_tv.png │ ├── country_flag_tw.png │ ├── country_flag_tz.png │ ├── country_flag_ua.png │ ├── country_flag_ug.png │ ├── country_flag_us.png │ ├── country_flag_uy.png │ ├── country_flag_uz.png │ ├── country_flag_va.png │ ├── country_flag_vc.png │ ├── country_flag_ve.png │ ├── country_flag_vg.png │ ├── country_flag_vi.png │ ├── country_flag_vn.png │ ├── country_flag_vu.png │ ├── country_flag_wf.png │ ├── country_flag_ws.png │ ├── country_flag_ye.png │ ├── country_flag_yt.png │ ├── country_flag_za.png │ ├── country_flag_zm.png │ └── country_flag_zw.png │ ├── drawable │ └── ic_close_24dp.xml │ ├── layout │ ├── bottom_sheet_country_picker.xml │ └── item_country_picker.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── style.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/ibrahimsn/phonenumberkit/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/java/me/ibrahimsn/phonenumberkit/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/ss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/art/ss1.jpg -------------------------------------------------------------------------------- /art/ss2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/art/ss2.jpg -------------------------------------------------------------------------------- /art/ss3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/art/ss3.jpg -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/jitpack.yml -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/proguard-rules.pro -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/src/main/assets/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/assets/countries.json -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/PhoneNumberKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/PhoneNumberKit.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/api/Country.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/api/Country.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/api/Phone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/api/Phone.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/core/Proxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/core/Proxy.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ext/CoroutineExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ext/CoroutineExt.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ext/CountryExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ext/CountryExtensions.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ext/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ext/Extensions.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ext/ViewExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ext/ViewExt.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/io/FileReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/io/FileReader.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/model/State.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/model/State.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/pattern/CountryPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/pattern/CountryPattern.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/pattern/Pattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/pattern/Pattern.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryAdapter.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerArguments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerArguments.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerBottomSheet.kt -------------------------------------------------------------------------------- /lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerViewState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/java/me/ibrahimsn/lib/internal/ui/CountryPickerViewState.kt -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ad.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ae.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_af.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ag.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ai.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_al.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_am.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_an.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ao.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_aq.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ar.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_as.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_at.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_au.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_aw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ax.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_az.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ba.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bb.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bd.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_be.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bi.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bj.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bo.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bq.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_br.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bs.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_by.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_bz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ca.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cd.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ch.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ci.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ck.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_co.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cv.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cx.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cy.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_cz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_de.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_dj.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_dk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_dm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_do.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_dz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ec.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ee.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_eg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_eh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_er.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_es.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_et.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fi.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fj.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fo.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_fr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ga.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gb.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gd.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ge.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gi.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gp.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gq.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gs.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_gy.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_hk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_hn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_hr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ht.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_hu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_id.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ie.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_il.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_im.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_in.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_io.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_iq.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ir.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_is.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_it.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_je.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_jm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_jo.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_jp.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ke.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ki.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_km.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kp.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ky.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_kz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_la.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lb.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_li.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ls.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_lv.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ly.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ma.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_md.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_me.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ml.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mo.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mp.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mq.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ms.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mv.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mx.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_my.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_mz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_na.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ne.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ng.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ni.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_no.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_np.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_nz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_om.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pa.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pe.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ph.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ps.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_pw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_py.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_qa.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_re.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ro.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_rs.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ru.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_rw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sa.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sb.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sd.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_se.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sh.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_si.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sj.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_so.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ss.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_st.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sv.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sx.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sy.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_sz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_td.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_th.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tj.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tk.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tl.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_to.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tr.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tv.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_tz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ua.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ug.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_us.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_uy.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_uz.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_va.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_vc.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ve.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_vg.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_vi.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_vn.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_vu.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_wf.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ws.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_ye.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_yt.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_za.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_zm.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable-xhdpi/country_flag_zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable-xhdpi/country_flag_zw.png -------------------------------------------------------------------------------- /lib/src/main/res/drawable/ic_close_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/drawable/ic_close_24dp.xml -------------------------------------------------------------------------------- /lib/src/main/res/layout/bottom_sheet_country_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/layout/bottom_sheet_country_picker.xml -------------------------------------------------------------------------------- /lib/src/main/res/layout/item_country_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/layout/item_country_picker.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/lib/src/main/res/values/style.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimsn98/PhoneNumberKit/HEAD/settings.gradle --------------------------------------------------------------------------------