├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android.yml │ └── codeql.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── Screenshot 2022-12-29 141313.png ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mcode │ │ └── togii │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── mcode │ │ │ └── countrycode │ │ │ ├── CCApp.kt │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── mcode │ └── togii │ └── ExampleUnitTest.kt ├── ccp ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── gradle.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mcode │ │ └── ccp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── Countries.json │ ├── java │ │ └── com │ │ │ └── mcode │ │ │ └── ccp │ │ │ ├── component │ │ │ ├── CPBottomSheet.kt │ │ │ ├── CountryPickerTextField.kt │ │ │ └── CountrySearchView.kt │ │ │ ├── data │ │ │ ├── CountryData.kt │ │ │ └── utils │ │ │ │ ├── GetCountryFlag.kt │ │ │ │ ├── GetCountryName.kt │ │ │ │ ├── GetCountryPhoneCode.kt │ │ │ │ ├── GetNumberHint.kt │ │ │ │ └── MCodeUtils.kt │ │ │ ├── transformation │ │ │ └── PhoneNumberTransformation.kt │ │ │ └── utils │ │ │ └── CountyUtils.kt │ └── res │ │ ├── drawable │ │ ├── ac.png │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── ao.png │ │ ├── aq.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bl.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── bq.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cp.png │ │ ├── cr.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cw.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dg.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── dz.png │ │ ├── ea.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── er.png │ │ ├── es.png │ │ ├── esct.png │ │ ├── esga.png │ │ ├── et.png │ │ ├── eu.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gbeng.png │ │ ├── gbnir.png │ │ ├── gbsct.png │ │ ├── gbwls.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gg.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── ic.png │ │ ├── ic_do.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── im.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── je.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mf.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── ss.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sx.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── ta.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── un.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── xk.png │ │ ├── xx.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ │ ├── value-nl-rNL │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── mcode │ └── ccp │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot ├── 1.txt ├── Screenshot 2022-12-29 141313.png └── ios.png └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mcode8 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Screenshot 2022-12-29 141313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/Screenshot 2022-12-29 141313.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/mcode/togii/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/androidTest/java/com/mcode/togii/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/CCApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/CCApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/mcode/countrycode/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/java/com/mcode/countrycode/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/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/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/mcode/togii/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/app/src/test/java/com/mcode/togii/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ccp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ccp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/build.gradle -------------------------------------------------------------------------------- /ccp/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccp/gradle.properties: -------------------------------------------------------------------------------- 1 | android.disableAutomaticComponentCreation=true 2 | -------------------------------------------------------------------------------- /ccp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/proguard-rules.pro -------------------------------------------------------------------------------- /ccp/src/androidTest/java/com/mcode/ccp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/androidTest/java/com/mcode/ccp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ccp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ccp/src/main/assets/Countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/assets/Countries.json -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/component/CPBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/component/CPBottomSheet.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/component/CountryPickerTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/component/CountryPickerTextField.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/component/CountrySearchView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/component/CountrySearchView.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/CountryData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/CountryData.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryFlag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryFlag.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryName.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryPhoneCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/utils/GetCountryPhoneCode.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/utils/GetNumberHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/utils/GetNumberHint.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/data/utils/MCodeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/data/utils/MCodeUtils.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/transformation/PhoneNumberTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/transformation/PhoneNumberTransformation.kt -------------------------------------------------------------------------------- /ccp/src/main/java/com/mcode/ccp/utils/CountyUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/java/com/mcode/ccp/utils/CountyUtils.kt -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ac.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ad.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ae.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/af.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ag.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ai.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/al.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/am.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ao.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/aq.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ar.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/as.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/at.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/au.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/aw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ax.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/az.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ba.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bb.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bd.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/be.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bi.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bj.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bo.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bq.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/br.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bs.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/by.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/bz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ca.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cd.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ch.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ci.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ck.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/co.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cp.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cx.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cy.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/cz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/de.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/dg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/dg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/dj.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/dk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/dm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/dz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ea.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ec.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ee.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/eg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/eh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/er.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/es.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/esct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/esct.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/esga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/esga.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/et.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/eu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fi.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fj.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fo.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/fr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ga.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gb.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gbeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gbeng.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gbnir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gbnir.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gbsct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gbsct.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gbwls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gbwls.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gd.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ge.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gi.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gp.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gq.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gs.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/gy.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/hk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/hm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/hn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/hr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ht.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/hu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ic.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ic_do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ic_do.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/id.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ie.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/il.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/im.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/in.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/io.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/iq.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ir.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/is.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/it.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/je.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/jm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/jo.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/jp.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ke.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ki.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/km.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kp.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ky.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/kz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/la.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lb.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/li.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ls.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/lv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ly.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ma.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/md.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/me.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ml.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mo.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mp.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mq.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ms.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mx.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/my.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/mz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/na.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ne.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ng.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ni.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/no.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/np.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/nz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/om.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pa.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pe.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ph.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ps.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/pw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/py.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/qa.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/re.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ro.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/rs.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ru.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/rw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sa.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sb.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sd.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/se.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sh.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/si.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sj.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/so.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ss.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/st.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sx.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sy.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/sz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ta.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/td.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/th.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tj.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tl.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/to.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tr.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tv.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tw.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/tz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ua.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ug.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/um.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/un.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/un.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/us.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/uy.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/uz.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/va.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/vc.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ve.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/vg.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/vi.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/vn.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/vu.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/wf.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ws.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/xk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/xk.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/xx.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/ye.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/yt.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/za.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/zm.png -------------------------------------------------------------------------------- /ccp/src/main/res/drawable/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/drawable/zw.png -------------------------------------------------------------------------------- /ccp/src/main/res/value-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/value-nl-rNL/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /ccp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ccp/src/test/java/com/mcode/ccp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/ccp/src/test/java/com/mcode/ccp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshot/1.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /screenshot/Screenshot 2022-12-29 141313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/screenshot/Screenshot 2022-12-29 141313.png -------------------------------------------------------------------------------- /screenshot/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/screenshot/ios.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkant8/Country-Code-picker/HEAD/settings.gradle --------------------------------------------------------------------------------