diff --git a/.gitignore b/.gitignore index 040f8d1..772f239 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ wear/wear.iml android.iml country-picker.iml hs_err_pid* -Android-country-picker.iml -/.idea \ No newline at end of file +.idea/ +*.iml diff --git a/Readme.md b/Readme.md index 35e05eb..76ae79f 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -Android country picker +Android Country Picker ==================== ## Features @@ -12,26 +12,13 @@ See the example to see more detail. ## How to install -You can install this dependency by downloading the source code or directly via gradle -with the help of [jitpack](https://jitpack.io/private#heetch/Android-country-picker/1.0.6) +`compile 'io.xsor:countrypicker:0.3'` ## How to use -To show CountryPicker as a dialog: - -```java -CountryPickerDialog countryPicker = - new CountryPickerDialog(mContext, new CountryPickerCallbacks() { - @Override - public void onCountrySelected(Country country, int flagResId) { - // TODO handle callback - } - }); -countryPicker.show(); -``` +See [sample app main activity](https://github.com/xsorifc28/CountryPicker/blob/master/sample/src/main/java/io/xsor/countrypickersample/MainActivity.java). If you want to retrieve a flag res outside of the country picker dialog use `Utils.getMipmapResId(Context context, String drawableName)` where -the drawable have to be formatted as follow: `countryIsoCodeInLowerCase_flag`. -For example: - `Utils.getMipmapResId(mContext, "fr_flag")` +the drawable have to be formatted as follow: `countryIsoCodeInLowerCase`. + `Utils.getMipmapResId(mContext, "fr")` diff --git a/build.gradle b/build.gradle index 5fdca31..5bfa008 100644 --- a/build.gradle +++ b/build.gradle @@ -1,33 +1,19 @@ +apply plugin: 'com.github.ben-manes.versions' + buildscript { repositories { - mavenCentral() + jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.1.2' + classpath 'com.android.tools.build:gradle:2.3.2' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0' + classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' + classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' } } -apply plugin: 'com.android.library' - -android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" - - defaultConfig { - minSdkVersion 10 - targetSdkVersion 22 - versionCode 106 - versionName "1.0.6" - } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } +allprojects { + repositories { + jcenter() } -} - -dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:22.2.1' -} +} \ No newline at end of file diff --git a/countrypicker/.gitignore b/countrypicker/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/countrypicker/.gitignore @@ -0,0 +1 @@ +/build diff --git a/countrypicker/build.gradle b/countrypicker/build.gradle new file mode 100644 index 0000000..d1a641b --- /dev/null +++ b/countrypicker/build.gradle @@ -0,0 +1,114 @@ +apply plugin: 'com.android.library' +apply plugin: 'com.github.dcendents.android-maven' +apply plugin: "com.jfrog.bintray" + +version = "0.4" + +android { + compileSdkVersion 25 + buildToolsVersion "25.0.2" + + defaultConfig { + minSdkVersion 14 + targetSdkVersion 25 + versionCode 4 + versionName version + + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:recyclerview-v7:25.3.1' + compile 'com.github.wrdlbrnft:sorted-list-adapter:0.2.0.19' +} + +def siteUrl = 'https://github.com/xsorifc28/CountryPicker' // Homepage URL of the library +def gitUrl = 'https://github.com/xsorifc28/CountryPicker.git' // Git repository URL +group = "io.xsor" // Maven Group ID for the artifact + +install { + repositories.mavenInstaller { + // This generates POM.xml with proper parameters + pom { + project { + packaging 'aar' + + // Add your description here + name 'io.xsor.countrypicker' + description = 'Country Picker Library' + url siteUrl + + // Set your license + licenses { + license { + name 'The Apache Software License, Version 2.0' + url 'http://www.apache.org/licenses/LICENSE-2.0.txt' + } + } + developers { + developer { + id 'xsor' + name 'Samed Ozdemir' + email 'samed@xsor.io' + } + } + scm { + connection gitUrl + developerConnection gitUrl + url siteUrl + } + } + } + } +} + +task sourcesJar(type: Jar) { + from android.sourceSets.main.java.srcDirs + classifier = 'sources' +} + +task javadoc(type: Javadoc) { + source = android.sourceSets.main.java.srcDirs + classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) +} + +task javadocJar(type: Jar, dependsOn: javadoc) { + classifier = 'javadoc' + from javadoc.destinationDir +} +artifacts { + archives javadocJar + archives sourcesJar +} + +Properties properties = new Properties() +properties.load(project.rootProject.file('local.properties').newDataInputStream()) + +bintray { + user = properties.getProperty("bintray.user") + key = properties.getProperty("bintray.apikey") + + configurations = ['archives'] + pkg { + repo = "countrypicker" + name = "countrypicker" + websiteUrl = siteUrl + vcsUrl = gitUrl + licenses = ["Apache-2.0"] + publish = true + version { + gpg { + sign = true //Determines whether to GPG sign the files. The default is false + passphrase = properties.getProperty("bintray.gpg.password") + //Optional. The passphrase for GPG signing' + } + } + } +} \ No newline at end of file diff --git a/countrypicker/proguard-rules.pro b/countrypicker/proguard-rules.pro new file mode 100644 index 0000000..7343f5f --- /dev/null +++ b/countrypicker/proguard-rules.pro @@ -0,0 +1,17 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Samed\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/countrypicker/src/main/AndroidManifest.xml b/countrypicker/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c095177 --- /dev/null +++ b/countrypicker/src/main/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/countrypicker/src/main/ic_launcher-web.png b/countrypicker/src/main/ic_launcher-web.png new file mode 100644 index 0000000..830df33 Binary files /dev/null and b/countrypicker/src/main/ic_launcher-web.png differ diff --git a/countrypicker/src/main/java/io/xsor/countrypicker/Country.java b/countrypicker/src/main/java/io/xsor/countrypicker/Country.java new file mode 100644 index 0000000..5d8b550 --- /dev/null +++ b/countrypicker/src/main/java/io/xsor/countrypicker/Country.java @@ -0,0 +1,85 @@ +package io.xsor.countrypicker; + + +import android.support.annotation.NonNull; +import com.github.wrdlbrnft.sortedlistadapter.SortedListAdapter; +import java.util.Locale; + +@SuppressWarnings("unused") +public class Country implements SortedListAdapter.ViewModel { + + private String isoCode; + private String dialingCode = "-1"; + + public Country() {} + + public Country(String isoCode, String dialingCode) { + this.isoCode = isoCode.toLowerCase(); + this.dialingCode = dialingCode; + } + + public String getIsoCode() { + return isoCode; + } + + public void setIsoCode(String isoCode) { + this.isoCode = isoCode; + } + + public String getDialingCode() { + return dialingCode; + } + + public void setDialingCode(String dialingCode) { + this.dialingCode = dialingCode; + } + + public int getDialingCodeInt() { + return Integer.parseInt(dialingCode); + } + + public String getCountryName() { + return new Locale(Locale.getDefault().getLanguage(), this.getIsoCode()).getDisplayCountry(); + + } + + @Override + public boolean isSameModelAs(@NonNull T item) { + if (item instanceof Country) { + final Country other = (Country) item; + return other.getIsoCode().equals(isoCode); + } + return false; + } + + @Override + public boolean isContentTheSameAs(@NonNull T item) { + if (item instanceof Country) { + final Country other = (Country) item; + return isoCode != null ? isoCode.equals(other.getIsoCode()) : other.getIsoCode() == null && + dialingCode != null ? getDialingCodeInt() == other.getDialingCodeInt() : other + .getDialingCodeInt() > -1; + } + return false; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + + Country country = (Country) o; + + return isoCode.equals(country.getIsoCode()); + + } + + @Override + public int hashCode() { + return isoCode.hashCode(); + } +} diff --git a/countrypicker/src/main/java/io/xsor/countrypicker/CountryAdapter.java b/countrypicker/src/main/java/io/xsor/countrypicker/CountryAdapter.java new file mode 100644 index 0000000..5f8aad6 --- /dev/null +++ b/countrypicker/src/main/java/io/xsor/countrypicker/CountryAdapter.java @@ -0,0 +1,87 @@ +package io.xsor.countrypicker; + +import android.content.Context; +import android.support.annotation.NonNull; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ImageView; +import android.widget.TextView; +import com.github.wrdlbrnft.sortedlistadapter.SortedListAdapter; +import io.xsor.countrypicker.CountryPickerDialog.Listener; +import java.util.Comparator; +import java.util.Locale; + +public class CountryAdapter extends SortedListAdapter { + + private boolean showDialingCode = false; + private boolean roundFlags = false; + private Listener listener; + + public CountryAdapter(Context context, Comparator comparator, + Listener listener, boolean roundFlags, boolean showDialingCode) { + super(context, Country.class, comparator); + this.listener = listener; + this.showDialingCode = showDialingCode; + this.roundFlags = roundFlags; + } + + @NonNull + @Override + protected ViewHolder onCreateViewHolder(@NonNull LayoutInflater layoutInflater, + @NonNull ViewGroup viewGroup, int i) { + View itemView = LayoutInflater. + from(viewGroup.getContext()). + inflate(R.layout.item_country, viewGroup, false); + + return new ExampleViewHolder(itemView); + } + + private class ExampleViewHolder extends SortedListAdapter.ViewHolder implements View + .OnClickListener { + + private final TextView name; + private final ImageView icon; + private int flagResId; + private Country country; + + ExampleViewHolder(View itemView) { + + super(itemView); + + itemView.setOnClickListener(this); + name = (TextView) itemView.findViewById(R.id.name); + icon = (ImageView) itemView.findViewById(R.id.icon); + } + + @Override + protected void performBind(@NonNull Country item) { + Context c = icon.getContext(); + country = item; + String itemText = new Locale(Locale.getDefault().getLanguage(), item.getIsoCode()) + .getDisplayCountry(); + + if (showDialingCode) { + itemText += " " + String + .format(c.getString(R.string.format_dialing_code), item.getDialingCode()); + } + + name.setText(itemText); + + flagResId = Utils + .getFlagResId(c, item.getIsoCode().toLowerCase(Locale.ENGLISH)); + + if (roundFlags) { + //icon.setImageDrawable(Utils.getRoundedDrawable(c, flagResId)); + icon.setImageBitmap(Utils.getCircleCroppedBitmap(c, flagResId)); + } else { + icon.setImageResource(flagResId); + } + } + + @Override + public void onClick(View view) { + listener.onCountrySelected(country, flagResId); + } + } +} diff --git a/countrypicker/src/main/java/io/xsor/countrypicker/CountryPickerDialog.java b/countrypicker/src/main/java/io/xsor/countrypicker/CountryPickerDialog.java new file mode 100644 index 0000000..c3bbe12 --- /dev/null +++ b/countrypicker/src/main/java/io/xsor/countrypicker/CountryPickerDialog.java @@ -0,0 +1,239 @@ +package io.xsor.countrypicker; + +import android.animation.Animator; +import android.animation.AnimatorListenerAdapter; +import android.animation.ObjectAnimator; +import android.content.Context; +import android.os.Bundle; +import android.support.v7.app.AppCompatDialog; +import android.support.v7.widget.LinearLayoutManager; +import android.support.v7.widget.RecyclerView; +import android.support.v7.widget.SearchView; +import android.support.v7.widget.SearchView.OnQueryTextListener; +import android.view.View; +import android.view.animation.AccelerateDecelerateInterpolator; +import android.widget.ProgressBar; +import com.github.wrdlbrnft.sortedlistadapter.SortedListAdapter.Callback; +import java.text.Collator; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; +import java.util.Locale; + +public class CountryPickerDialog extends AppCompatDialog implements OnQueryTextListener, Callback { + + private List countries; + private CountryAdapter adapter; + private CountryPickerDialog.Listener listener; + private RecyclerView rvCountryList; + private Animator mAnimator; + + private String scrollToCountryCode; + private boolean showDialingCode = false; + private boolean showRoundFlags = false; + private int titleResId; + private ProgressBar pbEditProgressBar; + private LinearLayoutManager llm; + + private Comparator comparator = new Comparator() { + @Override + public int compare(Country country1, Country country2) { + final Locale locale = Locale.getDefault(); + final Collator collator = Collator.getInstance(locale); + collator.setStrength(Collator.PRIMARY); + return collator.compare( + new Locale(locale.getLanguage(), country1.getIsoCode()).getDisplayCountry(), + new Locale(locale.getLanguage(), country2.getIsoCode()).getDisplayCountry()); + } + }; + + /** + * @param context The calling activity or context + * @param listener The listener to be fired when a country from the list is chosen + */ + public CountryPickerDialog(Context context, Listener listener) { + super(context); + this.listener = listener; + this.titleResId = R.string.pick_a_country; + countries = Utils.parseCountries(Utils.getCountriesJSON(this.getContext())); + Collections.sort(countries, comparator); + } + + /** + * @param context The calling activity or context + * @param titleResId The resource id for the title + * @param listener The listener to be fired when a country from the list is chosen + */ + public CountryPickerDialog(Context context, int titleResId, Listener listener) { + this(context, listener); + this.titleResId = titleResId; + } + + /** + * @param context The calling activity or context + * @param titleResId The resource id for the title + * @param showRoundFlags Show round flag icons in dialog + * @param listener The listener to be fired when a country from the list is chosen + */ + public CountryPickerDialog(Context context, int titleResId, boolean showRoundFlags, + Listener listener) { + this(context, titleResId, listener); + this.showRoundFlags = showRoundFlags; + } + + /** + * @param context The calling activity or context + * @param titleResId The resource id for the title + * @param showRoundFlags Show round flag icons in dialog + * @param showDialingCode Show country dialong codes in dialog + * @param listener The listener to be fired when a country from the list is chosen + */ + public CountryPickerDialog(Context context, int titleResId, boolean showRoundFlags, + boolean showDialingCode, Listener listener) { + this(context, titleResId, showRoundFlags, listener); + this.showDialingCode = showDialingCode; + } + + public CountryPickerDialog(Context context, boolean roundFlags, boolean dialingCodes, + Listener callback) { + this(context, R.string.pick_a_country, roundFlags, dialingCodes, callback); + } + + public CountryPickerDialog(Context context, boolean roundFlags, Listener callback) { + this(context, R.string.pick_a_country, roundFlags, false, callback); + } + + private static List filter(List models, String query) { + final String lowerCaseQuery = query.toLowerCase(); + + final List filteredModelList = new ArrayList<>(); + for (Country model : models) { + final String text = model.getCountryName().toLowerCase(); + if (text.contains(lowerCaseQuery)) { + filteredModelList.add(model); + } + } + return filteredModelList; + } + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + setContentView(R.layout.country_picker); + + setTitle(titleResId); + + // SearchView + SearchView svCountrySearch = (SearchView) findViewById(R.id.svCountrySearch); + if (svCountrySearch != null) { + svCountrySearch.setOnQueryTextListener(this); + svCountrySearch.setIconifiedByDefault(true); + svCountrySearch.setFocusable(true); + svCountrySearch.setIconified(false); + svCountrySearch.clearFocus(); + } + + pbEditProgressBar = (ProgressBar) findViewById(R.id.pbEditProgressBar); + + rvCountryList = (RecyclerView) findViewById(R.id.rvCountriesList); + + if (rvCountryList != null) { + rvCountryList.setHasFixedSize(true); + } + + llm = new LinearLayoutManager(getContext()); + llm.setOrientation(LinearLayoutManager.VERTICAL); + rvCountryList.setLayoutManager(llm); + adapter = new CountryAdapter(getContext(), comparator, listener, showRoundFlags, showDialingCode); + adapter.addCallback(this); + adapter.edit().add(countries).commit(); + + rvCountryList.setAdapter(adapter); + + } + + public CountryPickerDialog setScrollToCountry(String countryIsoCode) { + this.scrollToCountryCode = countryIsoCode; + return this; + } + + private void scrollToHeadingCountry() { + if (scrollToCountryCode != null) { + int idx = countries.indexOf(new Country(scrollToCountryCode, "-1")); + if (idx > -1) { + llm.scrollToPositionWithOffset(idx, 0); + } + } + + } + + @Override + public boolean onQueryTextSubmit(String query) { + return false; + } + + @Override + public boolean onQueryTextChange(String query) { + final List filteredModelList = filter(countries, query); + adapter.edit() + .replaceAll(filteredModelList) + .commit(); + return true; + } + + @Override + public void onEditStarted() { + if (pbEditProgressBar.getVisibility() != View.VISIBLE) { + pbEditProgressBar.setVisibility(View.VISIBLE); + pbEditProgressBar.setAlpha(0.0f); + } + + if (mAnimator != null) { + mAnimator.cancel(); + } + + mAnimator = ObjectAnimator.ofFloat(pbEditProgressBar, View.ALPHA, 1.0f); + mAnimator.setInterpolator(new AccelerateDecelerateInterpolator()); + mAnimator.start(); + + rvCountryList.animate().alpha(0.5f); + } + + @Override + public void onEditFinished() { + scrollToHeadingCountry(); + rvCountryList.animate().alpha(1.0f); + + if (mAnimator != null) { + mAnimator.cancel(); + } + + mAnimator = ObjectAnimator.ofFloat(pbEditProgressBar, View.ALPHA, 0.0f); + mAnimator.setInterpolator(new AccelerateDecelerateInterpolator()); + mAnimator.addListener(new AnimatorListenerAdapter() { + + private boolean mCanceled = false; + + @Override + public void onAnimationCancel(Animator animation) { + super.onAnimationCancel(animation); + mCanceled = true; + } + + @Override + public void onAnimationEnd(Animator animation) { + super.onAnimationEnd(animation); + if (!mCanceled) { + pbEditProgressBar.setVisibility(View.GONE); + } + } + }); + mAnimator.start(); + } + + public interface Listener { + void onCountrySelected(Country country, int flagResId); + } +} diff --git a/countrypicker/src/main/java/io/xsor/countrypicker/Utils.java b/countrypicker/src/main/java/io/xsor/countrypicker/Utils.java new file mode 100644 index 0000000..fd0499b --- /dev/null +++ b/countrypicker/src/main/java/io/xsor/countrypicker/Utils.java @@ -0,0 +1,160 @@ +package io.xsor.countrypicker; + +import android.content.Context; +import android.content.res.Resources; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.Canvas; +import android.graphics.Paint; +import android.graphics.Path; +import android.graphics.PorterDuff; +import android.graphics.PorterDuffXfermode; +import android.graphics.Rect; +import android.graphics.RectF; +import android.support.v4.graphics.drawable.RoundedBitmapDrawable; +import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Locale; +import java.util.Map; +import org.json.JSONException; +import org.json.JSONObject; + +public class Utils { + + // Crop radius + private static int CROP_RADIUS = dpToPx(15); + + public static int getFlagResId(Context context, String drawableName) { + int resId = context.getResources().getIdentifier( + drawableName.toLowerCase(Locale.ENGLISH) + "_flag", "mipmap", context.getPackageName()); + if (resId != 0) { + return resId; + } else { + return R.mipmap.unknown_flag; + } + } + + public static JSONObject getCountriesJSON(Context context) { + String resourceName = "countries_dialing_code"; + int resourceId = context.getResources().getIdentifier( + resourceName, "raw", context.getApplicationContext().getPackageName()); + + if (resourceId == 0) { + return null; + } + + InputStream stream = context.getResources().openRawResource(resourceId); + + try { + return new JSONObject(convertStreamToString(stream)); + } catch (JSONException e) { + e.printStackTrace(); + } + + return null; + } + + public static List parseCountries(JSONObject jsonCountries) { + List countries = new ArrayList<>(); + Iterator iter = jsonCountries.keys(); + + while (iter.hasNext()) { + String key = iter.next(); + try { + String value = (String) jsonCountries.get(key); + countries.add(new Country(key, value)); + } catch (JSONException e) { + e.printStackTrace(); + } + } + return countries; + } + + public static Map getCountryAndIsoHashMap(Context context) { + Map map = new HashMap<>(); + + List countries = Utils + .parseCountries(Utils.getCountriesJSON(context)); + + for (Country c : countries) { + map.put(c.getCountryName(), c.getIsoCode()); + } + + return map; + } + + public static String getCountryCodeFromName(Context context, String countryName) { + Map countriesMap = getCountryAndIsoHashMap(context); + + String code = countriesMap.get(countryName); + + return code == null ? null : code.toLowerCase(); + } + + public static String convertStreamToString(java.io.InputStream is) { + java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A"); + return s.hasNext() ? s.next() : ""; + } + + + public static Bitmap getCircleCroppedBitmap(Bitmap bitmap) { + + int tWidth = bitmap.getWidth(); + int tHeight = bitmap.getHeight(); + + int targetSize = Math.min(tWidth, tHeight); + + int targetWidth = CROP_RADIUS * 2; + int targetHeight = CROP_RADIUS * 2; + + Bitmap targetBitmap = Bitmap.createBitmap(targetWidth, + targetHeight, Bitmap.Config.ARGB_8888); + + Canvas canvas = new Canvas(targetBitmap); + + Path path = new Path(); + path.addCircle(targetWidth / 2, + targetHeight / 2, + CROP_RADIUS, + Path.Direction.CW); + + canvas.clipPath(path); + + Paint mPaint = new Paint(); + mPaint.setAntiAlias(true); + + tWidth = bitmap.getWidth() / 2; + tHeight = bitmap.getHeight() / 2; + + canvas.drawBitmap(bitmap, + new Rect(tWidth - CROP_RADIUS, tHeight - CROP_RADIUS, + tWidth + CROP_RADIUS, tHeight + CROP_RADIUS), + new Rect(0, 0, + targetWidth, targetHeight), + mPaint); + + bitmap.recycle(); + + return targetBitmap; + } + + public static RoundedBitmapDrawable getRoundedDrawable(Context c, int resId) { + RoundedBitmapDrawable img = RoundedBitmapDrawableFactory + .create(c.getResources(), BitmapFactory.decodeResource(c.getResources(), resId)); + img.setCornerRadius(Math.min(img.getMinimumWidth(), img.getMinimumHeight()) / 2.0f); + return img; + } + + public static Bitmap getCircleCroppedBitmap(Context c, int resId) { + return getCircleCroppedBitmap(BitmapFactory.decodeResource(c.getResources(), resId)); + } + + + public static int dpToPx(int dp) { + return (int) (dp * Resources.getSystem().getDisplayMetrics().density); + } +} diff --git a/countrypicker/src/main/res/layout/country_picker.xml b/countrypicker/src/main/res/layout/country_picker.xml new file mode 100644 index 0000000..c8d1b6d --- /dev/null +++ b/countrypicker/src/main/res/layout/country_picker.xml @@ -0,0 +1,34 @@ + + + + + + + + + \ No newline at end of file diff --git a/countrypicker/src/main/res/layout/item_country.xml b/countrypicker/src/main/res/layout/item_country.xml new file mode 100644 index 0000000..4958b2d --- /dev/null +++ b/countrypicker/src/main/res/layout/item_country.xml @@ -0,0 +1,31 @@ + + + + + + + + \ No newline at end of file diff --git a/countrypicker/src/main/res/mipmap-hdpi/ab_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ab_flag.png new file mode 100644 index 0000000..bae5f97 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ab_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ad_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ad_flag.png new file mode 100644 index 0000000..0447b9c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ad_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ae_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ae_flag.png new file mode 100644 index 0000000..e087ddb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ae_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/af_flag.png b/countrypicker/src/main/res/mipmap-hdpi/af_flag.png new file mode 100644 index 0000000..965c179 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/af_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ag_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ag_flag.png new file mode 100644 index 0000000..73f60eb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ag_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ai_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ai_flag.png new file mode 100644 index 0000000..c1a5c32 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ai_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/al_flag.png b/countrypicker/src/main/res/mipmap-hdpi/al_flag.png new file mode 100644 index 0000000..0459066 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/al_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/am_flag.png b/countrypicker/src/main/res/mipmap-hdpi/am_flag.png new file mode 100644 index 0000000..a7dc4b5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/am_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ao_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ao_flag.png new file mode 100644 index 0000000..388583e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ao_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/aq_flag.png b/countrypicker/src/main/res/mipmap-hdpi/aq_flag.png new file mode 100644 index 0000000..d62be25 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/aq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ar_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ar_flag.png new file mode 100644 index 0000000..7124009 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ar_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/as_flag.png b/countrypicker/src/main/res/mipmap-hdpi/as_flag.png new file mode 100644 index 0000000..f28ddc0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/as_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/at_flag.png b/countrypicker/src/main/res/mipmap-hdpi/at_flag.png new file mode 100644 index 0000000..1cdaef6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/at_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/au_flag.png b/countrypicker/src/main/res/mipmap-hdpi/au_flag.png new file mode 100644 index 0000000..f82bf72 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/au_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/aw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/aw_flag.png new file mode 100644 index 0000000..8654232 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/aw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ax_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ax_flag.png new file mode 100644 index 0000000..d3f5ead Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ax_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/az_flag.png b/countrypicker/src/main/res/mipmap-hdpi/az_flag.png new file mode 100644 index 0000000..356e867 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/az_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ba_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ba_flag.png new file mode 100644 index 0000000..15a55c7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ba_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bb_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bb_flag.png new file mode 100644 index 0000000..9e1bee3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bd_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bd_flag.png new file mode 100644 index 0000000..db78560 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/be_flag.png b/countrypicker/src/main/res/mipmap-hdpi/be_flag.png new file mode 100644 index 0000000..e7537be Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/be_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bf_flag.png new file mode 100644 index 0000000..4465242 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bg_flag.png new file mode 100644 index 0000000..e32b72d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bh_flag.png new file mode 100644 index 0000000..7294d91 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bi_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bi_flag.png new file mode 100644 index 0000000..391c602 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bj_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bj_flag.png new file mode 100644 index 0000000..9d1e856 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bl_flag.png new file mode 100644 index 0000000..4d14f8d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bm_flag.png new file mode 100644 index 0000000..5486d0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bn_flag.png new file mode 100644 index 0000000..c5569e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bo_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bo_flag.png new file mode 100644 index 0000000..038c54f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bq_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bq_flag.png new file mode 100644 index 0000000..e602fe8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/br_flag.png b/countrypicker/src/main/res/mipmap-hdpi/br_flag.png new file mode 100644 index 0000000..06fe83d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/br_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bs_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bs_flag.png new file mode 100644 index 0000000..c33cf17 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bt_flag.png new file mode 100644 index 0000000..f34d219 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bv_flag.png new file mode 100644 index 0000000..303b7c3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bw_flag.png new file mode 100644 index 0000000..34b5e6d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/by_flag.png b/countrypicker/src/main/res/mipmap-hdpi/by_flag.png new file mode 100644 index 0000000..e303762 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/by_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/bz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/bz_flag.png new file mode 100644 index 0000000..9f3aade Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/bz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ca_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ca_flag.png new file mode 100644 index 0000000..9b4f3a5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ca_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cc_flag.png new file mode 100644 index 0000000..dedc86b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cd_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cd_flag.png new file mode 100644 index 0000000..2e0922e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cf_flag.png new file mode 100644 index 0000000..bde0795 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cg_flag.png new file mode 100644 index 0000000..1257c5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ch_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ch_flag.png new file mode 100644 index 0000000..1892c22 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ch_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ci_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ci_flag.png new file mode 100644 index 0000000..2b910b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ci_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ck_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ck_flag.png new file mode 100644 index 0000000..5413694 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ck_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cl_flag.png new file mode 100644 index 0000000..adc9c46 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cm_flag.png new file mode 100644 index 0000000..a951fdf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cn_flag.png new file mode 100644 index 0000000..eb98bac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/co_flag.png b/countrypicker/src/main/res/mipmap-hdpi/co_flag.png new file mode 100644 index 0000000..02326e1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/co_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cr_flag.png new file mode 100644 index 0000000..d981fb4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cu_flag.png new file mode 100644 index 0000000..dc1cd88 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cv_flag.png new file mode 100644 index 0000000..d8bf461 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cw_flag.png new file mode 100644 index 0000000..bc47316 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cx_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cx_flag.png new file mode 100644 index 0000000..d21ae96 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cy_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cy_flag.png new file mode 100644 index 0000000..d802301 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/cz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/cz_flag.png new file mode 100644 index 0000000..3ae5dca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/cz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/de_flag.png b/countrypicker/src/main/res/mipmap-hdpi/de_flag.png new file mode 100644 index 0000000..b106f9f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/de_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/dj_flag.png b/countrypicker/src/main/res/mipmap-hdpi/dj_flag.png new file mode 100644 index 0000000..77d4a6c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/dj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/dk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/dk_flag.png new file mode 100644 index 0000000..b0eab64 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/dk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/dm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/dm_flag.png new file mode 100644 index 0000000..68b186a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/dm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/do_flag.png b/countrypicker/src/main/res/mipmap-hdpi/do_flag.png new file mode 100644 index 0000000..b953c95 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/do_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/dz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/dz_flag.png new file mode 100644 index 0000000..7cc03d7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/dz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ec_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ec_flag.png new file mode 100644 index 0000000..e6c1bb7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ec_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ee_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ee_flag.png new file mode 100644 index 0000000..e91e536 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ee_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/eg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/eg_flag.png new file mode 100644 index 0000000..14c5197 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/eg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/eh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/eh_flag.png new file mode 100644 index 0000000..e5f08f4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/eh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/er_flag.png b/countrypicker/src/main/res/mipmap-hdpi/er_flag.png new file mode 100644 index 0000000..a749d4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/er_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/es_flag.png b/countrypicker/src/main/res/mipmap-hdpi/es_flag.png new file mode 100644 index 0000000..aa24720 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/es_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/et_flag.png b/countrypicker/src/main/res/mipmap-hdpi/et_flag.png new file mode 100644 index 0000000..8eecd77 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/et_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fi_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fi_flag.png new file mode 100644 index 0000000..c4e63dc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fj_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fj_flag.png new file mode 100644 index 0000000..2b9e4a8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fk_flag.png new file mode 100644 index 0000000..851e0ca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fm_flag.png new file mode 100644 index 0000000..a090139 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fo_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fo_flag.png new file mode 100644 index 0000000..afcb8bd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/fr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/fr_flag.png new file mode 100644 index 0000000..d29798c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/fr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ga_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ga_flag.png new file mode 100644 index 0000000..b5a22cd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ga_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gb_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gb_flag.png new file mode 100644 index 0000000..878cdfa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gd_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gd_flag.png new file mode 100644 index 0000000..9709d65 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ge_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ge_flag.png new file mode 100644 index 0000000..8526aff Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ge_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gf_flag.png new file mode 100644 index 0000000..d5c0a1e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gg_flag.png new file mode 100644 index 0000000..8432d41 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gh_flag.png new file mode 100644 index 0000000..5db83a9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gi_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gi_flag.png new file mode 100644 index 0000000..d06aacc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gl_flag.png new file mode 100644 index 0000000..f6b8860 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gm_flag.png new file mode 100644 index 0000000..8bf0dc2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gn_flag.png new file mode 100644 index 0000000..59401b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gp_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gp_flag.png new file mode 100644 index 0000000..5bd83db Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gq_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gq_flag.png new file mode 100644 index 0000000..9dbd38d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gr_flag.png new file mode 100644 index 0000000..cd2bf37 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gs_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gs_flag.png new file mode 100644 index 0000000..c489910 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gt_flag.png new file mode 100644 index 0000000..ed0b417 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gu_flag.png new file mode 100644 index 0000000..7df4498 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gw_flag.png new file mode 100644 index 0000000..7294e81 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/gy_flag.png b/countrypicker/src/main/res/mipmap-hdpi/gy_flag.png new file mode 100644 index 0000000..64a27c6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/gy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/hk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/hk_flag.png new file mode 100644 index 0000000..14996ca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/hk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/hm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/hm_flag.png new file mode 100644 index 0000000..74f8744 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/hm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/hn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/hn_flag.png new file mode 100644 index 0000000..f9cecfe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/hn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/hr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/hr_flag.png new file mode 100644 index 0000000..b02ced9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/hr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ht_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ht_flag.png new file mode 100644 index 0000000..6ddb532 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ht_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/hu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/hu_flag.png new file mode 100644 index 0000000..1582361 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/hu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ic_launcher.png b/countrypicker/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..2230299 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ic_launcher_round.png b/countrypicker/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..2230299 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/id_flag.png b/countrypicker/src/main/res/mipmap-hdpi/id_flag.png new file mode 100644 index 0000000..2fa3759 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/id_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ie_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ie_flag.png new file mode 100644 index 0000000..2dd0840 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ie_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/il_flag.png b/countrypicker/src/main/res/mipmap-hdpi/il_flag.png new file mode 100644 index 0000000..2e8cb9c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/il_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/im_flag.png b/countrypicker/src/main/res/mipmap-hdpi/im_flag.png new file mode 100644 index 0000000..0815f0e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/im_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/in_flag.png b/countrypicker/src/main/res/mipmap-hdpi/in_flag.png new file mode 100644 index 0000000..5cd8062 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/in_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/io_flag.png b/countrypicker/src/main/res/mipmap-hdpi/io_flag.png new file mode 100644 index 0000000..07c9349 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/io_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/iq_flag.png b/countrypicker/src/main/res/mipmap-hdpi/iq_flag.png new file mode 100644 index 0000000..ea77b10 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/iq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ir_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ir_flag.png new file mode 100644 index 0000000..f9476cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ir_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/is_flag.png b/countrypicker/src/main/res/mipmap-hdpi/is_flag.png new file mode 100644 index 0000000..3641582 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/is_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/it_flag.png b/countrypicker/src/main/res/mipmap-hdpi/it_flag.png new file mode 100644 index 0000000..22d32ba Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/it_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/je_flag.png b/countrypicker/src/main/res/mipmap-hdpi/je_flag.png new file mode 100644 index 0000000..68cb7c6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/je_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/jm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/jm_flag.png new file mode 100644 index 0000000..fcf95af Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/jm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/jo_flag.png b/countrypicker/src/main/res/mipmap-hdpi/jo_flag.png new file mode 100644 index 0000000..e04c531 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/jo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/jp_flag.png b/countrypicker/src/main/res/mipmap-hdpi/jp_flag.png new file mode 100644 index 0000000..dba970c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/jp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ke_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ke_flag.png new file mode 100644 index 0000000..8231eea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ke_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kg_flag.png new file mode 100644 index 0000000..ad518cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kh_flag.png new file mode 100644 index 0000000..24961ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ki_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ki_flag.png new file mode 100644 index 0000000..71dafbe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ki_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/km_flag.png b/countrypicker/src/main/res/mipmap-hdpi/km_flag.png new file mode 100644 index 0000000..a6e624f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/km_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kn_flag.png new file mode 100644 index 0000000..f8b5571 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kp_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kp_flag.png new file mode 100644 index 0000000..50fad70 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kr_flag.png new file mode 100644 index 0000000..950804d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kw_flag.png new file mode 100644 index 0000000..9dab1c6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ky_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ky_flag.png new file mode 100644 index 0000000..4ded6a7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ky_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/kz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/kz_flag.png new file mode 100644 index 0000000..5e235fe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/kz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/la_flag.png b/countrypicker/src/main/res/mipmap-hdpi/la_flag.png new file mode 100644 index 0000000..5c90f08 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/la_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lb_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lb_flag.png new file mode 100644 index 0000000..8fbb852 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lc_flag.png new file mode 100644 index 0000000..596e30e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/li_flag.png b/countrypicker/src/main/res/mipmap-hdpi/li_flag.png new file mode 100644 index 0000000..a10744e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/li_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lk_flag.png new file mode 100644 index 0000000..fd2747c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lr_flag.png new file mode 100644 index 0000000..e8dc3f0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ls_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ls_flag.png new file mode 100644 index 0000000..0576444 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ls_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lt_flag.png new file mode 100644 index 0000000..e7b155e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lu_flag.png new file mode 100644 index 0000000..ee2bece Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/lv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/lv_flag.png new file mode 100644 index 0000000..45334c9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/lv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ly_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ly_flag.png new file mode 100644 index 0000000..4a3d39c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ly_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ma_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ma_flag.png new file mode 100644 index 0000000..6a4c0af Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ma_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mc_flag.png new file mode 100644 index 0000000..468255c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/md_flag.png b/countrypicker/src/main/res/mipmap-hdpi/md_flag.png new file mode 100644 index 0000000..014cb31 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/md_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/me_flag.png b/countrypicker/src/main/res/mipmap-hdpi/me_flag.png new file mode 100644 index 0000000..f90c7e7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/me_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mf_flag.png new file mode 100644 index 0000000..abcdfba Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mg_flag.png new file mode 100644 index 0000000..669e93a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mh_flag.png new file mode 100644 index 0000000..b05c7d3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mk_flag.png new file mode 100644 index 0000000..a3035ab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ml_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ml_flag.png new file mode 100644 index 0000000..1f5d819 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ml_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mm_flag.png new file mode 100644 index 0000000..79090c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mn_flag.png new file mode 100644 index 0000000..7a2b6ab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mo_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mo_flag.png new file mode 100644 index 0000000..8a95243 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mp_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mp_flag.png new file mode 100644 index 0000000..13a56c2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mq_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mq_flag.png new file mode 100644 index 0000000..5e9c582 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mr_flag.png new file mode 100644 index 0000000..dca17bb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ms_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ms_flag.png new file mode 100644 index 0000000..dca17bb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ms_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mt_flag.png new file mode 100644 index 0000000..e867c80 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mu_flag.png new file mode 100644 index 0000000..daf7c6c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mv_flag.png new file mode 100644 index 0000000..96a689e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mw_flag.png new file mode 100644 index 0000000..5dbe6a8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mx_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mx_flag.png new file mode 100644 index 0000000..1fc8a5d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/my_flag.png b/countrypicker/src/main/res/mipmap-hdpi/my_flag.png new file mode 100644 index 0000000..acc5413 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/my_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/mz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/mz_flag.png new file mode 100644 index 0000000..2bb1633 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/mz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/na_flag.png b/countrypicker/src/main/res/mipmap-hdpi/na_flag.png new file mode 100644 index 0000000..b2451bf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/na_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nc_flag.png new file mode 100644 index 0000000..42827c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ne_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ne_flag.png new file mode 100644 index 0000000..58855d4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ne_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nf_flag.png new file mode 100644 index 0000000..40f610e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ng_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ng_flag.png new file mode 100644 index 0000000..8033a92 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ng_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ni_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ni_flag.png new file mode 100644 index 0000000..9d49d68 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ni_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nl_flag.png new file mode 100644 index 0000000..1cc0875 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/no_flag.png b/countrypicker/src/main/res/mipmap-hdpi/no_flag.png new file mode 100644 index 0000000..0da7e67 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/no_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/np_flag.png b/countrypicker/src/main/res/mipmap-hdpi/np_flag.png new file mode 100644 index 0000000..1564641 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/np_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nr_flag.png new file mode 100644 index 0000000..202fd4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nu_flag.png new file mode 100644 index 0000000..d29acf6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/nz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/nz_flag.png new file mode 100644 index 0000000..e9a1a67 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/nz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/om_flag.png b/countrypicker/src/main/res/mipmap-hdpi/om_flag.png new file mode 100644 index 0000000..0b5fe9d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/om_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pa_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pa_flag.png new file mode 100644 index 0000000..0a523dd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pe_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pe_flag.png new file mode 100644 index 0000000..e63b90d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pe_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pf_flag.png new file mode 100644 index 0000000..1ec2bb4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pg_flag.png new file mode 100644 index 0000000..c9eb004 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ph_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ph_flag.png new file mode 100644 index 0000000..5edd244 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ph_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pk_flag.png new file mode 100644 index 0000000..abc8303 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pl_flag.png new file mode 100644 index 0000000..a1bf9c9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pm_flag.png new file mode 100644 index 0000000..c7a1e49 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pn_flag.png new file mode 100644 index 0000000..d38e96d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pr_flag.png new file mode 100644 index 0000000..67ea30f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ps_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ps_flag.png new file mode 100644 index 0000000..c871fcf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ps_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pt_flag.png new file mode 100644 index 0000000..9cca24b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/pw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/pw_flag.png new file mode 100644 index 0000000..5a9e558 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/pw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/py_flag.png b/countrypicker/src/main/res/mipmap-hdpi/py_flag.png new file mode 100644 index 0000000..b43cb2d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/py_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/qa_flag.png b/countrypicker/src/main/res/mipmap-hdpi/qa_flag.png new file mode 100644 index 0000000..d6d48bf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/qa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/re_flag.png b/countrypicker/src/main/res/mipmap-hdpi/re_flag.png new file mode 100644 index 0000000..d29798c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/re_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ro_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ro_flag.png new file mode 100644 index 0000000..0523205 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ro_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/rs_flag.png b/countrypicker/src/main/res/mipmap-hdpi/rs_flag.png new file mode 100644 index 0000000..4cea790 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/rs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ru_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ru_flag.png new file mode 100644 index 0000000..67812e8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ru_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/rw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/rw_flag.png new file mode 100644 index 0000000..41030b8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/rw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sa_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sa_flag.png new file mode 100644 index 0000000..ced8121 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sb_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sb_flag.png new file mode 100644 index 0000000..0fd2a64 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sc_flag.png new file mode 100644 index 0000000..25ea5ca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sd_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sd_flag.png new file mode 100644 index 0000000..576c846 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/se_flag.png b/countrypicker/src/main/res/mipmap-hdpi/se_flag.png new file mode 100644 index 0000000..97e2b5d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/se_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sg_flag.png new file mode 100644 index 0000000..3f37391 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sh_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sh_flag.png new file mode 100644 index 0000000..afbcdd8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/si_flag.png b/countrypicker/src/main/res/mipmap-hdpi/si_flag.png new file mode 100644 index 0000000..19772c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/si_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sj_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sj_flag.png new file mode 100644 index 0000000..428b905 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sk_flag.png new file mode 100644 index 0000000..78c0329 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sl_flag.png new file mode 100644 index 0000000..2de9aa5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sm_flag.png new file mode 100644 index 0000000..771518d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sn_flag.png new file mode 100644 index 0000000..85515e3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/so_flag.png b/countrypicker/src/main/res/mipmap-hdpi/so_flag.png new file mode 100644 index 0000000..dcb44f6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/so_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sr_flag.png new file mode 100644 index 0000000..2e25eb9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ss_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ss_flag.png new file mode 100644 index 0000000..4aa50d9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ss_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/st_flag.png b/countrypicker/src/main/res/mipmap-hdpi/st_flag.png new file mode 100644 index 0000000..6d3c125 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/st_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sv_flag.png new file mode 100644 index 0000000..15ea25a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sx_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sx_flag.png new file mode 100644 index 0000000..c1765f6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sy_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sy_flag.png new file mode 100644 index 0000000..4577e7a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/sz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/sz_flag.png new file mode 100644 index 0000000..10c1251 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/sz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tc_flag.png new file mode 100644 index 0000000..7d35625 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/td_flag.png b/countrypicker/src/main/res/mipmap-hdpi/td_flag.png new file mode 100644 index 0000000..e258e32 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/td_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tf_flag.png new file mode 100644 index 0000000..7206b5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tg_flag.png new file mode 100644 index 0000000..0976b4c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/th_flag.png b/countrypicker/src/main/res/mipmap-hdpi/th_flag.png new file mode 100644 index 0000000..de1baa5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/th_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tj_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tj_flag.png new file mode 100644 index 0000000..47c5cc6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tk_flag.png new file mode 100644 index 0000000..56f5087 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tl_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tl_flag.png new file mode 100644 index 0000000..8432bbf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tm_flag.png new file mode 100644 index 0000000..83aa5ca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tn_flag.png new file mode 100644 index 0000000..a532918 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/to_flag.png b/countrypicker/src/main/res/mipmap-hdpi/to_flag.png new file mode 100644 index 0000000..d561c5a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/to_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tr_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tr_flag.png new file mode 100644 index 0000000..42243bf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tt_flag.png new file mode 100644 index 0000000..c0b3c6e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tv_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tv_flag.png new file mode 100644 index 0000000..36673a2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tw_flag.png new file mode 100644 index 0000000..adb0267 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/tz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/tz_flag.png new file mode 100644 index 0000000..1b08f86 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/tz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ua_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ua_flag.png new file mode 100644 index 0000000..e3e0df0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ua_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ug_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ug_flag.png new file mode 100644 index 0000000..5dd6e9a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ug_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/um_flag.png b/countrypicker/src/main/res/mipmap-hdpi/um_flag.png new file mode 100644 index 0000000..b89aef9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/um_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/unknown_flag.png b/countrypicker/src/main/res/mipmap-hdpi/unknown_flag.png new file mode 100644 index 0000000..967f9a6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/unknown_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/us_flag.png b/countrypicker/src/main/res/mipmap-hdpi/us_flag.png new file mode 100644 index 0000000..b89aef9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/us_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/uy_flag.png b/countrypicker/src/main/res/mipmap-hdpi/uy_flag.png new file mode 100644 index 0000000..377f196 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/uy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/uz_flag.png b/countrypicker/src/main/res/mipmap-hdpi/uz_flag.png new file mode 100644 index 0000000..9fe73b7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/uz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/va_flag.png b/countrypicker/src/main/res/mipmap-hdpi/va_flag.png new file mode 100644 index 0000000..31df164 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/va_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/vc_flag.png b/countrypicker/src/main/res/mipmap-hdpi/vc_flag.png new file mode 100644 index 0000000..51ca33f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/vc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ve_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ve_flag.png new file mode 100644 index 0000000..82d29b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ve_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/vg_flag.png b/countrypicker/src/main/res/mipmap-hdpi/vg_flag.png new file mode 100644 index 0000000..90975b8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/vg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/vi_flag.png b/countrypicker/src/main/res/mipmap-hdpi/vi_flag.png new file mode 100644 index 0000000..13d05a9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/vi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/vn_flag.png b/countrypicker/src/main/res/mipmap-hdpi/vn_flag.png new file mode 100644 index 0000000..a0675b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/vn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/vu_flag.png b/countrypicker/src/main/res/mipmap-hdpi/vu_flag.png new file mode 100644 index 0000000..bf7d4b7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/vu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/wf_flag.png b/countrypicker/src/main/res/mipmap-hdpi/wf_flag.png new file mode 100644 index 0000000..c445568 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/wf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ws_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ws_flag.png new file mode 100644 index 0000000..1d0378b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ws_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/xk_flag.png b/countrypicker/src/main/res/mipmap-hdpi/xk_flag.png new file mode 100644 index 0000000..2f67119 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/xk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/ye_flag.png b/countrypicker/src/main/res/mipmap-hdpi/ye_flag.png new file mode 100644 index 0000000..ac0cb53 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/ye_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/yt_flag.png b/countrypicker/src/main/res/mipmap-hdpi/yt_flag.png new file mode 100644 index 0000000..33be706 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/yt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/za_flag.png b/countrypicker/src/main/res/mipmap-hdpi/za_flag.png new file mode 100644 index 0000000..5516028 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/za_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/zm_flag.png b/countrypicker/src/main/res/mipmap-hdpi/zm_flag.png new file mode 100644 index 0000000..d2c1959 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/zm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-hdpi/zw_flag.png b/countrypicker/src/main/res/mipmap-hdpi/zw_flag.png new file mode 100644 index 0000000..8f0db4b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-hdpi/zw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ab_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ab_flag.png new file mode 100644 index 0000000..fc3cbbd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ab_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ad_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ad_flag.png new file mode 100644 index 0000000..f9dda46 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ad_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ae_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ae_flag.png new file mode 100644 index 0000000..d797cda Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ae_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/af_flag.png b/countrypicker/src/main/res/mipmap-mdpi/af_flag.png new file mode 100644 index 0000000..7152ce8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/af_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ag_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ag_flag.png new file mode 100644 index 0000000..b72dacb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ag_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ai_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ai_flag.png new file mode 100644 index 0000000..72a758e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ai_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/al_flag.png b/countrypicker/src/main/res/mipmap-mdpi/al_flag.png new file mode 100644 index 0000000..cefcf67 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/al_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/am_flag.png b/countrypicker/src/main/res/mipmap-mdpi/am_flag.png new file mode 100644 index 0000000..400085f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/am_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ao_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ao_flag.png new file mode 100644 index 0000000..09b0a2c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ao_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/aq_flag.png b/countrypicker/src/main/res/mipmap-mdpi/aq_flag.png new file mode 100644 index 0000000..cb2e9b5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/aq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ar_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ar_flag.png new file mode 100644 index 0000000..94299ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ar_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/as_flag.png b/countrypicker/src/main/res/mipmap-mdpi/as_flag.png new file mode 100644 index 0000000..ba8b29b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/as_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/at_flag.png b/countrypicker/src/main/res/mipmap-mdpi/at_flag.png new file mode 100644 index 0000000..37c6648 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/at_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/au_flag.png b/countrypicker/src/main/res/mipmap-mdpi/au_flag.png new file mode 100644 index 0000000..d12d100 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/au_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/aw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/aw_flag.png new file mode 100644 index 0000000..e22f40c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/aw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ax_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ax_flag.png new file mode 100644 index 0000000..ae1d11b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ax_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/az_flag.png b/countrypicker/src/main/res/mipmap-mdpi/az_flag.png new file mode 100644 index 0000000..efde6ef Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/az_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ba_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ba_flag.png new file mode 100644 index 0000000..1d77003 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ba_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bb_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bb_flag.png new file mode 100644 index 0000000..5ec13f1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bd_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bd_flag.png new file mode 100644 index 0000000..4ce4891 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/be_flag.png b/countrypicker/src/main/res/mipmap-mdpi/be_flag.png new file mode 100644 index 0000000..4b7abf9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/be_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bf_flag.png new file mode 100644 index 0000000..afdcdf8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bg_flag.png new file mode 100644 index 0000000..9e62792 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bh_flag.png new file mode 100644 index 0000000..e650e37 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bi_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bi_flag.png new file mode 100644 index 0000000..594ab5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bj_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bj_flag.png new file mode 100644 index 0000000..f21467c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bl_flag.png new file mode 100644 index 0000000..42c0189 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bm_flag.png new file mode 100644 index 0000000..22d3e74 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bn_flag.png new file mode 100644 index 0000000..073dc2e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bo_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bo_flag.png new file mode 100644 index 0000000..80340a2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bq_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bq_flag.png new file mode 100644 index 0000000..06b51e9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/br_flag.png b/countrypicker/src/main/res/mipmap-mdpi/br_flag.png new file mode 100644 index 0000000..0fa3d51 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/br_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bs_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bs_flag.png new file mode 100644 index 0000000..c5bbc15 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bt_flag.png new file mode 100644 index 0000000..60a7027 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bv_flag.png new file mode 100644 index 0000000..58b6fa9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bw_flag.png new file mode 100644 index 0000000..4e8fbb4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/by_flag.png b/countrypicker/src/main/res/mipmap-mdpi/by_flag.png new file mode 100644 index 0000000..fdba422 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/by_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/bz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/bz_flag.png new file mode 100644 index 0000000..f661e9f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/bz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ca_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ca_flag.png new file mode 100644 index 0000000..196ad3f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ca_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cc_flag.png new file mode 100644 index 0000000..dc4f475 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cd_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cd_flag.png new file mode 100644 index 0000000..a83e201 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cf_flag.png new file mode 100644 index 0000000..1d97a8c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cg_flag.png new file mode 100644 index 0000000..c2eaa19 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ch_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ch_flag.png new file mode 100644 index 0000000..f632d55 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ch_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ci_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ci_flag.png new file mode 100644 index 0000000..05fa822 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ci_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ck_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ck_flag.png new file mode 100644 index 0000000..01636c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ck_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cl_flag.png new file mode 100644 index 0000000..a83953e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cm_flag.png new file mode 100644 index 0000000..472205e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cn_flag.png new file mode 100644 index 0000000..19c6193 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/co_flag.png b/countrypicker/src/main/res/mipmap-mdpi/co_flag.png new file mode 100644 index 0000000..728afda Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/co_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cr_flag.png new file mode 100644 index 0000000..57b468e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cu_flag.png new file mode 100644 index 0000000..da81df9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cv_flag.png new file mode 100644 index 0000000..b048d8a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cw_flag.png new file mode 100644 index 0000000..76d1620 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cx_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cx_flag.png new file mode 100644 index 0000000..e99006e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cy_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cy_flag.png new file mode 100644 index 0000000..c3ad39a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/cz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/cz_flag.png new file mode 100644 index 0000000..4121b38 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/cz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/de_flag.png b/countrypicker/src/main/res/mipmap-mdpi/de_flag.png new file mode 100644 index 0000000..78f0109 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/de_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/dj_flag.png b/countrypicker/src/main/res/mipmap-mdpi/dj_flag.png new file mode 100644 index 0000000..06ad2d2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/dj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/dk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/dk_flag.png new file mode 100644 index 0000000..e3605a0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/dk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/dm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/dm_flag.png new file mode 100644 index 0000000..32744f0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/dm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/do_flag.png b/countrypicker/src/main/res/mipmap-mdpi/do_flag.png new file mode 100644 index 0000000..c218045 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/do_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/dz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/dz_flag.png new file mode 100644 index 0000000..ffd275f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/dz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ec_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ec_flag.png new file mode 100644 index 0000000..43a0f3e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ec_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ee_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ee_flag.png new file mode 100644 index 0000000..0ef8224 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ee_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/eg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/eg_flag.png new file mode 100644 index 0000000..6880675 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/eg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/eh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/eh_flag.png new file mode 100644 index 0000000..1ed53c5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/eh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/er_flag.png b/countrypicker/src/main/res/mipmap-mdpi/er_flag.png new file mode 100644 index 0000000..95dde80 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/er_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/es_flag.png b/countrypicker/src/main/res/mipmap-mdpi/es_flag.png new file mode 100644 index 0000000..39875d0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/es_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/et_flag.png b/countrypicker/src/main/res/mipmap-mdpi/et_flag.png new file mode 100644 index 0000000..c8c3d76 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/et_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fi_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fi_flag.png new file mode 100644 index 0000000..5a55c75 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fj_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fj_flag.png new file mode 100644 index 0000000..339178b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fk_flag.png new file mode 100644 index 0000000..c210a11 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fm_flag.png new file mode 100644 index 0000000..98ed8c2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fo_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fo_flag.png new file mode 100644 index 0000000..249c019 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/fr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/fr_flag.png new file mode 100644 index 0000000..89f6546 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/fr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ga_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ga_flag.png new file mode 100644 index 0000000..433dbc7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ga_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gb_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gb_flag.png new file mode 100644 index 0000000..960296b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gd_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gd_flag.png new file mode 100644 index 0000000..7e9fabf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ge_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ge_flag.png new file mode 100644 index 0000000..c92a1e6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ge_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gf_flag.png new file mode 100644 index 0000000..1984c37 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gg_flag.png new file mode 100644 index 0000000..060106e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gh_flag.png new file mode 100644 index 0000000..14ebea2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gi_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gi_flag.png new file mode 100644 index 0000000..4139850 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gl_flag.png new file mode 100644 index 0000000..9481d88 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gm_flag.png new file mode 100644 index 0000000..81d79b3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gn_flag.png new file mode 100644 index 0000000..760155c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gp_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gp_flag.png new file mode 100644 index 0000000..73747d2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gq_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gq_flag.png new file mode 100644 index 0000000..f0ec3b6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gr_flag.png new file mode 100644 index 0000000..cc7aed3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gs_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gs_flag.png new file mode 100644 index 0000000..9d80435 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gt_flag.png new file mode 100644 index 0000000..a74fff4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gu_flag.png new file mode 100644 index 0000000..235bca7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gw_flag.png new file mode 100644 index 0000000..8c05b30 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/gy_flag.png b/countrypicker/src/main/res/mipmap-mdpi/gy_flag.png new file mode 100644 index 0000000..6971283 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/gy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/hk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/hk_flag.png new file mode 100644 index 0000000..531ed62 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/hk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/hm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/hm_flag.png new file mode 100644 index 0000000..37a4610 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/hm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/hn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/hn_flag.png new file mode 100644 index 0000000..307ab7f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/hn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/hr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/hr_flag.png new file mode 100644 index 0000000..35ca328 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/hr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ht_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ht_flag.png new file mode 100644 index 0000000..c31e1ff Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ht_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/hu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/hu_flag.png new file mode 100644 index 0000000..fe8c8e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/hu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ic_launcher.png b/countrypicker/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..7b2a1b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ic_launcher_round.png b/countrypicker/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..7b2a1b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/id_flag.png b/countrypicker/src/main/res/mipmap-mdpi/id_flag.png new file mode 100644 index 0000000..0fde744 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/id_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ie_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ie_flag.png new file mode 100644 index 0000000..ca12606 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ie_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/il_flag.png b/countrypicker/src/main/res/mipmap-mdpi/il_flag.png new file mode 100644 index 0000000..8318ae7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/il_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/im_flag.png b/countrypicker/src/main/res/mipmap-mdpi/im_flag.png new file mode 100644 index 0000000..491c572 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/im_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/in_flag.png b/countrypicker/src/main/res/mipmap-mdpi/in_flag.png new file mode 100644 index 0000000..46c137d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/in_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/io_flag.png b/countrypicker/src/main/res/mipmap-mdpi/io_flag.png new file mode 100644 index 0000000..42a7433 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/io_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/iq_flag.png b/countrypicker/src/main/res/mipmap-mdpi/iq_flag.png new file mode 100644 index 0000000..7cf616e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/iq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ir_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ir_flag.png new file mode 100644 index 0000000..604ed4b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ir_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/is_flag.png b/countrypicker/src/main/res/mipmap-mdpi/is_flag.png new file mode 100644 index 0000000..c2f56e4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/is_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/it_flag.png b/countrypicker/src/main/res/mipmap-mdpi/it_flag.png new file mode 100644 index 0000000..f4b8995 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/it_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/je_flag.png b/countrypicker/src/main/res/mipmap-mdpi/je_flag.png new file mode 100644 index 0000000..b97cf25 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/je_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/jm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/jm_flag.png new file mode 100644 index 0000000..4f9edfa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/jm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/jo_flag.png b/countrypicker/src/main/res/mipmap-mdpi/jo_flag.png new file mode 100644 index 0000000..34c4df0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/jo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/jp_flag.png b/countrypicker/src/main/res/mipmap-mdpi/jp_flag.png new file mode 100644 index 0000000..021447a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/jp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ke_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ke_flag.png new file mode 100644 index 0000000..d581d64 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ke_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kg_flag.png new file mode 100644 index 0000000..f9eacd4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kh_flag.png new file mode 100644 index 0000000..447a0f3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ki_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ki_flag.png new file mode 100644 index 0000000..65ab603 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ki_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/km_flag.png b/countrypicker/src/main/res/mipmap-mdpi/km_flag.png new file mode 100644 index 0000000..c95b078 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/km_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kn_flag.png new file mode 100644 index 0000000..0203688 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kp_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kp_flag.png new file mode 100644 index 0000000..e210670 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kr_flag.png new file mode 100644 index 0000000..e83da51 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kw_flag.png new file mode 100644 index 0000000..caeb1a8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ky_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ky_flag.png new file mode 100644 index 0000000..795fa09 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ky_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/kz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/kz_flag.png new file mode 100644 index 0000000..e6e5948 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/kz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/la_flag.png b/countrypicker/src/main/res/mipmap-mdpi/la_flag.png new file mode 100644 index 0000000..cde6038 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/la_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lb_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lb_flag.png new file mode 100644 index 0000000..89f1129 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lc_flag.png new file mode 100644 index 0000000..f13bbc7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/li_flag.png b/countrypicker/src/main/res/mipmap-mdpi/li_flag.png new file mode 100644 index 0000000..489ac19 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/li_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lk_flag.png new file mode 100644 index 0000000..ce6f45b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lr_flag.png new file mode 100644 index 0000000..3babfa9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ls_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ls_flag.png new file mode 100644 index 0000000..a2686ba Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ls_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lt_flag.png new file mode 100644 index 0000000..5698730 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lu_flag.png new file mode 100644 index 0000000..776a869 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/lv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/lv_flag.png new file mode 100644 index 0000000..90d6bcc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/lv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ly_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ly_flag.png new file mode 100644 index 0000000..6fb9b8c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ly_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ma_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ma_flag.png new file mode 100644 index 0000000..dc9a586 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ma_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mc_flag.png new file mode 100644 index 0000000..ed86469 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/md_flag.png b/countrypicker/src/main/res/mipmap-mdpi/md_flag.png new file mode 100644 index 0000000..62a58d6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/md_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/me_flag.png b/countrypicker/src/main/res/mipmap-mdpi/me_flag.png new file mode 100644 index 0000000..b7dbc24 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/me_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mf_flag.png new file mode 100644 index 0000000..ce1166f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mg_flag.png new file mode 100644 index 0000000..c113f01 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mh_flag.png new file mode 100644 index 0000000..64eb097 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mk_flag.png new file mode 100644 index 0000000..65efef2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ml_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ml_flag.png new file mode 100644 index 0000000..f6bbc67 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ml_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mm_flag.png new file mode 100644 index 0000000..3955fed Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mn_flag.png new file mode 100644 index 0000000..6f80231 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mo_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mo_flag.png new file mode 100644 index 0000000..198d1f5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mp_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mp_flag.png new file mode 100644 index 0000000..873c378 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mq_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mq_flag.png new file mode 100644 index 0000000..3e77293 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mr_flag.png new file mode 100644 index 0000000..62ef376 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ms_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ms_flag.png new file mode 100644 index 0000000..62ef376 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ms_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mt_flag.png new file mode 100644 index 0000000..2a94cec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mu_flag.png new file mode 100644 index 0000000..e8832a3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mv_flag.png new file mode 100644 index 0000000..e8fc78d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mw_flag.png new file mode 100644 index 0000000..c1680de Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mx_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mx_flag.png new file mode 100644 index 0000000..9b8469f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/my_flag.png b/countrypicker/src/main/res/mipmap-mdpi/my_flag.png new file mode 100644 index 0000000..b8c01e7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/my_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/mz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/mz_flag.png new file mode 100644 index 0000000..a176dd8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/mz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/na_flag.png b/countrypicker/src/main/res/mipmap-mdpi/na_flag.png new file mode 100644 index 0000000..8a48b8c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/na_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nc_flag.png new file mode 100644 index 0000000..157f305 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ne_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ne_flag.png new file mode 100644 index 0000000..f9e7f86 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ne_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nf_flag.png new file mode 100644 index 0000000..32b3c18 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ng_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ng_flag.png new file mode 100644 index 0000000..59efccc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ng_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ni_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ni_flag.png new file mode 100644 index 0000000..93429ec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ni_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nl_flag.png new file mode 100644 index 0000000..657eb34 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/no_flag.png b/countrypicker/src/main/res/mipmap-mdpi/no_flag.png new file mode 100644 index 0000000..32c2765 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/no_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/np_flag.png b/countrypicker/src/main/res/mipmap-mdpi/np_flag.png new file mode 100644 index 0000000..ab52971 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/np_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nr_flag.png new file mode 100644 index 0000000..2ff0f00 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nu_flag.png new file mode 100644 index 0000000..8394873 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/nz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/nz_flag.png new file mode 100644 index 0000000..8d30bd7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/nz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/om_flag.png b/countrypicker/src/main/res/mipmap-mdpi/om_flag.png new file mode 100644 index 0000000..b8f7dde Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/om_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pa_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pa_flag.png new file mode 100644 index 0000000..b31733b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pe_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pe_flag.png new file mode 100644 index 0000000..d9393dc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pe_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pf_flag.png new file mode 100644 index 0000000..2ae98c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pg_flag.png new file mode 100644 index 0000000..35b3f38 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ph_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ph_flag.png new file mode 100644 index 0000000..7ab6bb7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ph_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pk_flag.png new file mode 100644 index 0000000..cc82ce7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pl_flag.png new file mode 100644 index 0000000..6be86a5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pm_flag.png new file mode 100644 index 0000000..21e0a7e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pn_flag.png new file mode 100644 index 0000000..8f839f8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pr_flag.png new file mode 100644 index 0000000..daa399f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ps_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ps_flag.png new file mode 100644 index 0000000..9d19634 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ps_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pt_flag.png new file mode 100644 index 0000000..5e02908 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/pw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/pw_flag.png new file mode 100644 index 0000000..0c3df82 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/pw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/py_flag.png b/countrypicker/src/main/res/mipmap-mdpi/py_flag.png new file mode 100644 index 0000000..6f7ae52 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/py_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/qa_flag.png b/countrypicker/src/main/res/mipmap-mdpi/qa_flag.png new file mode 100644 index 0000000..e7e7450 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/qa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/re_flag.png b/countrypicker/src/main/res/mipmap-mdpi/re_flag.png new file mode 100644 index 0000000..89f6546 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/re_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ro_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ro_flag.png new file mode 100644 index 0000000..ec6dbc1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ro_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/rs_flag.png b/countrypicker/src/main/res/mipmap-mdpi/rs_flag.png new file mode 100644 index 0000000..0a5b613 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/rs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ru_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ru_flag.png new file mode 100644 index 0000000..ee37b60 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ru_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/rw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/rw_flag.png new file mode 100644 index 0000000..9a68666 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/rw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sa_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sa_flag.png new file mode 100644 index 0000000..6538002 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sb_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sb_flag.png new file mode 100644 index 0000000..8352179 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sc_flag.png new file mode 100644 index 0000000..ed0dc55 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sd_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sd_flag.png new file mode 100644 index 0000000..c2bf8f6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/se_flag.png b/countrypicker/src/main/res/mipmap-mdpi/se_flag.png new file mode 100644 index 0000000..1b88b12 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/se_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sg_flag.png new file mode 100644 index 0000000..fd9cf5e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sh_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sh_flag.png new file mode 100644 index 0000000..29579b8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/si_flag.png b/countrypicker/src/main/res/mipmap-mdpi/si_flag.png new file mode 100644 index 0000000..e6a0de0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/si_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sj_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sj_flag.png new file mode 100644 index 0000000..34e59e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sk_flag.png new file mode 100644 index 0000000..99583c3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sl_flag.png new file mode 100644 index 0000000..ebe3baa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sm_flag.png new file mode 100644 index 0000000..44ac6f4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sn_flag.png new file mode 100644 index 0000000..727022c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/so_flag.png b/countrypicker/src/main/res/mipmap-mdpi/so_flag.png new file mode 100644 index 0000000..661c763 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/so_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sr_flag.png new file mode 100644 index 0000000..c47a437 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ss_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ss_flag.png new file mode 100644 index 0000000..2f682e9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ss_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/st_flag.png b/countrypicker/src/main/res/mipmap-mdpi/st_flag.png new file mode 100644 index 0000000..0fa9f10 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/st_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sv_flag.png new file mode 100644 index 0000000..2328025 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sx_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sx_flag.png new file mode 100644 index 0000000..e4b8891 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sy_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sy_flag.png new file mode 100644 index 0000000..762453e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/sz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/sz_flag.png new file mode 100644 index 0000000..0844042 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/sz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tc_flag.png new file mode 100644 index 0000000..bdee3f9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/td_flag.png b/countrypicker/src/main/res/mipmap-mdpi/td_flag.png new file mode 100644 index 0000000..45c9b31 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/td_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tf_flag.png new file mode 100644 index 0000000..dc33d52 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tg_flag.png new file mode 100644 index 0000000..0506df4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/th_flag.png b/countrypicker/src/main/res/mipmap-mdpi/th_flag.png new file mode 100644 index 0000000..0e37f9b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/th_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tj_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tj_flag.png new file mode 100644 index 0000000..dafdf60 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tk_flag.png new file mode 100644 index 0000000..821cd67 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tl_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tl_flag.png new file mode 100644 index 0000000..8a28b73 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tm_flag.png new file mode 100644 index 0000000..0436dfd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tn_flag.png new file mode 100644 index 0000000..db6d76a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/to_flag.png b/countrypicker/src/main/res/mipmap-mdpi/to_flag.png new file mode 100644 index 0000000..f2df35a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/to_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tr_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tr_flag.png new file mode 100644 index 0000000..b56ab9f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tt_flag.png new file mode 100644 index 0000000..9de8f31 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tv_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tv_flag.png new file mode 100644 index 0000000..49b390e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tw_flag.png new file mode 100644 index 0000000..30df415 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/tz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/tz_flag.png new file mode 100644 index 0000000..00fcb99 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/tz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ua_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ua_flag.png new file mode 100644 index 0000000..f6f5c58 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ua_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ug_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ug_flag.png new file mode 100644 index 0000000..3829a8f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ug_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/um_flag.png b/countrypicker/src/main/res/mipmap-mdpi/um_flag.png new file mode 100644 index 0000000..1b60c0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/um_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/unknown_flag.png b/countrypicker/src/main/res/mipmap-mdpi/unknown_flag.png new file mode 100644 index 0000000..e0de0e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/unknown_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/us_flag.png b/countrypicker/src/main/res/mipmap-mdpi/us_flag.png new file mode 100644 index 0000000..1b60c0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/us_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/uy_flag.png b/countrypicker/src/main/res/mipmap-mdpi/uy_flag.png new file mode 100644 index 0000000..5cedeae Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/uy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/uz_flag.png b/countrypicker/src/main/res/mipmap-mdpi/uz_flag.png new file mode 100644 index 0000000..c61e2d3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/uz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/va_flag.png b/countrypicker/src/main/res/mipmap-mdpi/va_flag.png new file mode 100644 index 0000000..92a2dd3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/va_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/vc_flag.png b/countrypicker/src/main/res/mipmap-mdpi/vc_flag.png new file mode 100644 index 0000000..4832eab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/vc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ve_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ve_flag.png new file mode 100644 index 0000000..389f2d3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ve_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/vg_flag.png b/countrypicker/src/main/res/mipmap-mdpi/vg_flag.png new file mode 100644 index 0000000..b0e36d7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/vg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/vi_flag.png b/countrypicker/src/main/res/mipmap-mdpi/vi_flag.png new file mode 100644 index 0000000..17e0c18 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/vi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/vn_flag.png b/countrypicker/src/main/res/mipmap-mdpi/vn_flag.png new file mode 100644 index 0000000..f354495 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/vn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/vu_flag.png b/countrypicker/src/main/res/mipmap-mdpi/vu_flag.png new file mode 100644 index 0000000..e39eade Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/vu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/wf_flag.png b/countrypicker/src/main/res/mipmap-mdpi/wf_flag.png new file mode 100644 index 0000000..a0c289a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/wf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ws_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ws_flag.png new file mode 100644 index 0000000..b82ddb6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ws_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/xk_flag.png b/countrypicker/src/main/res/mipmap-mdpi/xk_flag.png new file mode 100644 index 0000000..d8c4c35 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/xk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/ye_flag.png b/countrypicker/src/main/res/mipmap-mdpi/ye_flag.png new file mode 100644 index 0000000..1d894ad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/ye_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/yt_flag.png b/countrypicker/src/main/res/mipmap-mdpi/yt_flag.png new file mode 100644 index 0000000..6777d21 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/yt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/za_flag.png b/countrypicker/src/main/res/mipmap-mdpi/za_flag.png new file mode 100644 index 0000000..6910e90 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/za_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/zm_flag.png b/countrypicker/src/main/res/mipmap-mdpi/zm_flag.png new file mode 100644 index 0000000..1b8b107 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/zm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-mdpi/zw_flag.png b/countrypicker/src/main/res/mipmap-mdpi/zw_flag.png new file mode 100644 index 0000000..8adb3b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-mdpi/zw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ab_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ab_flag.png new file mode 100644 index 0000000..227d23a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ab_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ad_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ad_flag.png new file mode 100644 index 0000000..a822820 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ad_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ae_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ae_flag.png new file mode 100644 index 0000000..f607ccd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ae_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/af_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/af_flag.png new file mode 100644 index 0000000..29af68a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/af_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ag_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ag_flag.png new file mode 100644 index 0000000..7201855 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ag_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ai_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ai_flag.png new file mode 100644 index 0000000..7609d9f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ai_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/al_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/al_flag.png new file mode 100644 index 0000000..f5e5f40 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/al_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/am_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/am_flag.png new file mode 100644 index 0000000..42977a8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/am_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ao_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ao_flag.png new file mode 100644 index 0000000..3b22fb6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ao_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/aq_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/aq_flag.png new file mode 100644 index 0000000..f0fa6d5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/aq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ar_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ar_flag.png new file mode 100644 index 0000000..af0a80c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ar_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/as_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/as_flag.png new file mode 100644 index 0000000..36b1f22 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/as_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/at_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/at_flag.png new file mode 100644 index 0000000..4188bb1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/at_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/au_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/au_flag.png new file mode 100644 index 0000000..d5d076a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/au_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/aw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/aw_flag.png new file mode 100644 index 0000000..843a9b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/aw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ax_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ax_flag.png new file mode 100644 index 0000000..c10143b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ax_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/az_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/az_flag.png new file mode 100644 index 0000000..134e9fe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/az_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ba_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ba_flag.png new file mode 100644 index 0000000..c94b093 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ba_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bb_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bb_flag.png new file mode 100644 index 0000000..171fe9d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bd_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bd_flag.png new file mode 100644 index 0000000..c7679be Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/be_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/be_flag.png new file mode 100644 index 0000000..8b4df51 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/be_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bf_flag.png new file mode 100644 index 0000000..dc9fb4c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bg_flag.png new file mode 100644 index 0000000..b34a64a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bh_flag.png new file mode 100644 index 0000000..0288ba0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bi_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bi_flag.png new file mode 100644 index 0000000..cbd599b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bj_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bj_flag.png new file mode 100644 index 0000000..45b388f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bl_flag.png new file mode 100644 index 0000000..02790cd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bm_flag.png new file mode 100644 index 0000000..0b13f2f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bn_flag.png new file mode 100644 index 0000000..df2bbd4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bo_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bo_flag.png new file mode 100644 index 0000000..d777967 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bq_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bq_flag.png new file mode 100644 index 0000000..279d3cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/br_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/br_flag.png new file mode 100644 index 0000000..4f37f94 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/br_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bs_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bs_flag.png new file mode 100644 index 0000000..1ed1506 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bt_flag.png new file mode 100644 index 0000000..1e5b1f4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bv_flag.png new file mode 100644 index 0000000..c0804bd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bw_flag.png new file mode 100644 index 0000000..27eda06 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/by_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/by_flag.png new file mode 100644 index 0000000..e5a0d78 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/by_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/bz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/bz_flag.png new file mode 100644 index 0000000..e3d4863 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/bz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ca_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ca_flag.png new file mode 100644 index 0000000..1353a76 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ca_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cc_flag.png new file mode 100644 index 0000000..ca984ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cd_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cd_flag.png new file mode 100644 index 0000000..5ddfe43 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cf_flag.png new file mode 100644 index 0000000..267fbd3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cg_flag.png new file mode 100644 index 0000000..01fe927 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ch_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ch_flag.png new file mode 100644 index 0000000..c7bca4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ch_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ci_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ci_flag.png new file mode 100644 index 0000000..0b1900c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ci_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ck_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ck_flag.png new file mode 100644 index 0000000..e668ade Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ck_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cl_flag.png new file mode 100644 index 0000000..d66c0e0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cm_flag.png new file mode 100644 index 0000000..3fcf6df Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cn_flag.png new file mode 100644 index 0000000..5e77749 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/co_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/co_flag.png new file mode 100644 index 0000000..345d419 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/co_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cr_flag.png new file mode 100644 index 0000000..e55b187 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cu_flag.png new file mode 100644 index 0000000..39b031e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cv_flag.png new file mode 100644 index 0000000..4ef2b6a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cw_flag.png new file mode 100644 index 0000000..8b0b39b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cx_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cx_flag.png new file mode 100644 index 0000000..7c1c092 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cy_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cy_flag.png new file mode 100644 index 0000000..13aedc8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/cz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/cz_flag.png new file mode 100644 index 0000000..efd09e4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/cz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/de_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/de_flag.png new file mode 100644 index 0000000..797fed0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/de_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/dj_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/dj_flag.png new file mode 100644 index 0000000..fb4a124 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/dj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/dk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/dk_flag.png new file mode 100644 index 0000000..9bbf704 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/dk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/dm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/dm_flag.png new file mode 100644 index 0000000..3a336c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/dm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/do_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/do_flag.png new file mode 100644 index 0000000..99ac4ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/do_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/dz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/dz_flag.png new file mode 100644 index 0000000..e468782 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/dz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ec_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ec_flag.png new file mode 100644 index 0000000..9506b5d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ec_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ee_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ee_flag.png new file mode 100644 index 0000000..05ef29f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ee_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/eg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/eg_flag.png new file mode 100644 index 0000000..b1eb77e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/eg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/eh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/eh_flag.png new file mode 100644 index 0000000..4b7cc99 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/eh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/er_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/er_flag.png new file mode 100644 index 0000000..c55cc64 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/er_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/es_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/es_flag.png new file mode 100644 index 0000000..5659dfb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/es_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/et_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/et_flag.png new file mode 100644 index 0000000..3dd8a74 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/et_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fi_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fi_flag.png new file mode 100644 index 0000000..de3e044 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fj_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fj_flag.png new file mode 100644 index 0000000..c487fc2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fk_flag.png new file mode 100644 index 0000000..82d59f5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fm_flag.png new file mode 100644 index 0000000..1993c14 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fo_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fo_flag.png new file mode 100644 index 0000000..9309f6d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/fr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/fr_flag.png new file mode 100644 index 0000000..8ab503a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/fr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ga_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ga_flag.png new file mode 100644 index 0000000..0573ee7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ga_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gb_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gb_flag.png new file mode 100644 index 0000000..03dc497 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gd_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gd_flag.png new file mode 100644 index 0000000..946cd69 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ge_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ge_flag.png new file mode 100644 index 0000000..ad3a0cb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ge_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gf_flag.png new file mode 100644 index 0000000..d1c2f0d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gg_flag.png new file mode 100644 index 0000000..8d35af7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gh_flag.png new file mode 100644 index 0000000..aa647e9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gi_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gi_flag.png new file mode 100644 index 0000000..dc94fc0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gl_flag.png new file mode 100644 index 0000000..b8c5c0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gm_flag.png new file mode 100644 index 0000000..f426ca0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gn_flag.png new file mode 100644 index 0000000..67706c0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gp_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gp_flag.png new file mode 100644 index 0000000..4fb14a0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gq_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gq_flag.png new file mode 100644 index 0000000..853d3e0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gr_flag.png new file mode 100644 index 0000000..cb3569f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gs_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gs_flag.png new file mode 100644 index 0000000..67194e3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gt_flag.png new file mode 100644 index 0000000..f122e7b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gu_flag.png new file mode 100644 index 0000000..48330ec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gw_flag.png new file mode 100644 index 0000000..2363e0d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/gy_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/gy_flag.png new file mode 100644 index 0000000..109b64f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/gy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/hk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/hk_flag.png new file mode 100644 index 0000000..3832de9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/hk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/hm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/hm_flag.png new file mode 100644 index 0000000..9047069 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/hm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/hn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/hn_flag.png new file mode 100644 index 0000000..72f66cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/hn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/hr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/hr_flag.png new file mode 100644 index 0000000..113c3ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/hr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ht_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ht_flag.png new file mode 100644 index 0000000..0ccea55 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ht_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/hu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/hu_flag.png new file mode 100644 index 0000000..b52f307 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/hu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher.png b/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..ce0dc1a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ce0dc1a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/id_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/id_flag.png new file mode 100644 index 0000000..a8c528f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/id_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ie_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ie_flag.png new file mode 100644 index 0000000..6a9f095 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ie_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/il_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/il_flag.png new file mode 100644 index 0000000..4e4de70 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/il_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/im_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/im_flag.png new file mode 100644 index 0000000..7bab153 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/im_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/in_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/in_flag.png new file mode 100644 index 0000000..4ac434d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/in_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/io_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/io_flag.png new file mode 100644 index 0000000..89a7aa8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/io_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/iq_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/iq_flag.png new file mode 100644 index 0000000..4be138a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/iq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ir_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ir_flag.png new file mode 100644 index 0000000..26b292a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ir_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/is_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/is_flag.png new file mode 100644 index 0000000..0265b4c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/is_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/it_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/it_flag.png new file mode 100644 index 0000000..0a5cd05 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/it_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/je_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/je_flag.png new file mode 100644 index 0000000..cb0df27 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/je_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/jm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/jm_flag.png new file mode 100644 index 0000000..d55789a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/jm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/jo_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/jo_flag.png new file mode 100644 index 0000000..35a33ad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/jo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/jp_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/jp_flag.png new file mode 100644 index 0000000..07445cb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/jp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ke_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ke_flag.png new file mode 100644 index 0000000..2e8a1d6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ke_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kg_flag.png new file mode 100644 index 0000000..e02f6dd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kh_flag.png new file mode 100644 index 0000000..1626557 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ki_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ki_flag.png new file mode 100644 index 0000000..916e63c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ki_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/km_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/km_flag.png new file mode 100644 index 0000000..9f105b6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/km_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kn_flag.png new file mode 100644 index 0000000..ad860a9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kp_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kp_flag.png new file mode 100644 index 0000000..a34e057 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kr_flag.png new file mode 100644 index 0000000..52bfab2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kw_flag.png new file mode 100644 index 0000000..32ce5a7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ky_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ky_flag.png new file mode 100644 index 0000000..0404d0e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ky_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/kz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/kz_flag.png new file mode 100644 index 0000000..71dfd60 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/kz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/la_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/la_flag.png new file mode 100644 index 0000000..fbab743 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/la_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lb_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lb_flag.png new file mode 100644 index 0000000..e148b1c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lc_flag.png new file mode 100644 index 0000000..bd5c1c3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/li_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/li_flag.png new file mode 100644 index 0000000..90316af Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/li_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lk_flag.png new file mode 100644 index 0000000..443e901 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lr_flag.png new file mode 100644 index 0000000..77612a1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ls_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ls_flag.png new file mode 100644 index 0000000..796f357 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ls_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lt_flag.png new file mode 100644 index 0000000..564cabe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lu_flag.png new file mode 100644 index 0000000..76ca475 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/lv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/lv_flag.png new file mode 100644 index 0000000..fc9bfbf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/lv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ly_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ly_flag.png new file mode 100644 index 0000000..0c27a80 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ly_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ma_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ma_flag.png new file mode 100644 index 0000000..2b37932 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ma_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mc_flag.png new file mode 100644 index 0000000..0dbce13 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/md_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/md_flag.png new file mode 100644 index 0000000..b5ab07a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/md_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/me_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/me_flag.png new file mode 100644 index 0000000..fbaf869 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/me_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mf_flag.png new file mode 100644 index 0000000..1b23026 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mg_flag.png new file mode 100644 index 0000000..adbae5a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mh_flag.png new file mode 100644 index 0000000..5f65ca6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mk_flag.png new file mode 100644 index 0000000..95fc575 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ml_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ml_flag.png new file mode 100644 index 0000000..836867f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ml_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mm_flag.png new file mode 100644 index 0000000..45df068 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mn_flag.png new file mode 100644 index 0000000..0fefd27 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mo_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mo_flag.png new file mode 100644 index 0000000..ef332a7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mp_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mp_flag.png new file mode 100644 index 0000000..c654199 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mq_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mq_flag.png new file mode 100644 index 0000000..43d6ca7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mr_flag.png new file mode 100644 index 0000000..a7f5622 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ms_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ms_flag.png new file mode 100644 index 0000000..a7f5622 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ms_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mt_flag.png new file mode 100644 index 0000000..e216a1f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mu_flag.png new file mode 100644 index 0000000..3f92b3b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mv_flag.png new file mode 100644 index 0000000..512d4d2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mw_flag.png new file mode 100644 index 0000000..2e2157d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mx_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mx_flag.png new file mode 100644 index 0000000..4f23386 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/my_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/my_flag.png new file mode 100644 index 0000000..012d1f4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/my_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/mz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/mz_flag.png new file mode 100644 index 0000000..507f476 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/mz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/na_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/na_flag.png new file mode 100644 index 0000000..48c53af Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/na_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nc_flag.png new file mode 100644 index 0000000..b49a741 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ne_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ne_flag.png new file mode 100644 index 0000000..85a4383 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ne_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nf_flag.png new file mode 100644 index 0000000..0f699ad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ng_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ng_flag.png new file mode 100644 index 0000000..bd3acb6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ng_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ni_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ni_flag.png new file mode 100644 index 0000000..30b4be5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ni_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nl_flag.png new file mode 100644 index 0000000..4aab7c5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/no_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/no_flag.png new file mode 100644 index 0000000..388d6c4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/no_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/np_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/np_flag.png new file mode 100644 index 0000000..d7c3fa8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/np_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nr_flag.png new file mode 100644 index 0000000..ded071d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nu_flag.png new file mode 100644 index 0000000..366fa17 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/nz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/nz_flag.png new file mode 100644 index 0000000..d11c25f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/nz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/om_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/om_flag.png new file mode 100644 index 0000000..32ae1a5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/om_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pa_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pa_flag.png new file mode 100644 index 0000000..8fc57c0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pe_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pe_flag.png new file mode 100644 index 0000000..34f62da Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pe_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pf_flag.png new file mode 100644 index 0000000..47f4226 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pg_flag.png new file mode 100644 index 0000000..48f9e01 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ph_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ph_flag.png new file mode 100644 index 0000000..53054a0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ph_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pk_flag.png new file mode 100644 index 0000000..54600b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pl_flag.png new file mode 100644 index 0000000..9399a30 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pm_flag.png new file mode 100644 index 0000000..e3479d9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pn_flag.png new file mode 100644 index 0000000..a2f0d91 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pr_flag.png new file mode 100644 index 0000000..b688295 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ps_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ps_flag.png new file mode 100644 index 0000000..a09693e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ps_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pt_flag.png new file mode 100644 index 0000000..ff68b1d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/pw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/pw_flag.png new file mode 100644 index 0000000..53e8902 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/pw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/py_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/py_flag.png new file mode 100644 index 0000000..22a4540 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/py_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/qa_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/qa_flag.png new file mode 100644 index 0000000..48bb8cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/qa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/re_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/re_flag.png new file mode 100644 index 0000000..8ab503a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/re_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ro_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ro_flag.png new file mode 100644 index 0000000..3aad088 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ro_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/rs_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/rs_flag.png new file mode 100644 index 0000000..9e942b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/rs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ru_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ru_flag.png new file mode 100644 index 0000000..5be34ab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ru_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/rw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/rw_flag.png new file mode 100644 index 0000000..597c73d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/rw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sa_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sa_flag.png new file mode 100644 index 0000000..1f26379 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sb_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sb_flag.png new file mode 100644 index 0000000..05f7996 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sc_flag.png new file mode 100644 index 0000000..18f8f42 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sd_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sd_flag.png new file mode 100644 index 0000000..d3db7de Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/se_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/se_flag.png new file mode 100644 index 0000000..b9dd8e7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/se_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sg_flag.png new file mode 100644 index 0000000..987b2c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sh_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sh_flag.png new file mode 100644 index 0000000..5cda9aa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/si_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/si_flag.png new file mode 100644 index 0000000..32ad3ed Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/si_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sj_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sj_flag.png new file mode 100644 index 0000000..a648c0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sk_flag.png new file mode 100644 index 0000000..193d284 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sl_flag.png new file mode 100644 index 0000000..ad9e4ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sm_flag.png new file mode 100644 index 0000000..db340fe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sn_flag.png new file mode 100644 index 0000000..88c170a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/so_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/so_flag.png new file mode 100644 index 0000000..bcf0733 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/so_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sr_flag.png new file mode 100644 index 0000000..4b07c03 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ss_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ss_flag.png new file mode 100644 index 0000000..9771cb0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ss_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/st_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/st_flag.png new file mode 100644 index 0000000..7ef3eed Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/st_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sv_flag.png new file mode 100644 index 0000000..155a73e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sx_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sx_flag.png new file mode 100644 index 0000000..7de3bbd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sy_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sy_flag.png new file mode 100644 index 0000000..286031e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/sz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/sz_flag.png new file mode 100644 index 0000000..4383aa2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/sz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tc_flag.png new file mode 100644 index 0000000..1b5ad5e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/td_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/td_flag.png new file mode 100644 index 0000000..ca821b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/td_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tf_flag.png new file mode 100644 index 0000000..c26e5c8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tg_flag.png new file mode 100644 index 0000000..2104b9c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/th_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/th_flag.png new file mode 100644 index 0000000..f944021 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/th_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tj_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tj_flag.png new file mode 100644 index 0000000..659604e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tk_flag.png new file mode 100644 index 0000000..d56be60 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tl_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tl_flag.png new file mode 100644 index 0000000..f0bcd77 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tm_flag.png new file mode 100644 index 0000000..8d8d77e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tn_flag.png new file mode 100644 index 0000000..fce4689 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/to_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/to_flag.png new file mode 100644 index 0000000..0927bf5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/to_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tr_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tr_flag.png new file mode 100644 index 0000000..5c8712d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tt_flag.png new file mode 100644 index 0000000..386f6a9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tv_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tv_flag.png new file mode 100644 index 0000000..918369f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tw_flag.png new file mode 100644 index 0000000..a279dd0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/tz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/tz_flag.png new file mode 100644 index 0000000..c6b8e3d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/tz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ua_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ua_flag.png new file mode 100644 index 0000000..e766905 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ua_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ug_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ug_flag.png new file mode 100644 index 0000000..3ed4dcf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ug_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/um_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/um_flag.png new file mode 100644 index 0000000..e86b88a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/um_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/unknown_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/unknown_flag.png new file mode 100644 index 0000000..a3857ad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/unknown_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/us_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/us_flag.png new file mode 100644 index 0000000..e86b88a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/us_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/uy_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/uy_flag.png new file mode 100644 index 0000000..5f856e8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/uy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/uz_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/uz_flag.png new file mode 100644 index 0000000..27bc2d0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/uz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/va_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/va_flag.png new file mode 100644 index 0000000..fc00c70 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/va_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/vc_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/vc_flag.png new file mode 100644 index 0000000..75145a6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/vc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ve_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ve_flag.png new file mode 100644 index 0000000..4df96d9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ve_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/vg_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/vg_flag.png new file mode 100644 index 0000000..cd9c221 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/vg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/vi_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/vi_flag.png new file mode 100644 index 0000000..25ce20f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/vi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/vn_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/vn_flag.png new file mode 100644 index 0000000..fb11156 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/vn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/vu_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/vu_flag.png new file mode 100644 index 0000000..9a0b783 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/vu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/wf_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/wf_flag.png new file mode 100644 index 0000000..95fb5f1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/wf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ws_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ws_flag.png new file mode 100644 index 0000000..4e8e143 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ws_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/xk_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/xk_flag.png new file mode 100644 index 0000000..10ecd4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/xk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/ye_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/ye_flag.png new file mode 100644 index 0000000..5c56712 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/ye_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/yt_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/yt_flag.png new file mode 100644 index 0000000..50fa21b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/yt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/za_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/za_flag.png new file mode 100644 index 0000000..43d340d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/za_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/zm_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/zm_flag.png new file mode 100644 index 0000000..793fa8b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/zm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xhdpi/zw_flag.png b/countrypicker/src/main/res/mipmap-xhdpi/zw_flag.png new file mode 100644 index 0000000..bc48c51 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xhdpi/zw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ab_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ab_flag.png new file mode 100644 index 0000000..3b00245 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ab_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ad_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ad_flag.png new file mode 100644 index 0000000..8699ffd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ad_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ae_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ae_flag.png new file mode 100644 index 0000000..4bc06b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ae_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/af_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/af_flag.png new file mode 100644 index 0000000..befe2fc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/af_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ag_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ag_flag.png new file mode 100644 index 0000000..a06aeb6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ag_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ai_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ai_flag.png new file mode 100644 index 0000000..c462ed2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ai_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/al_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/al_flag.png new file mode 100644 index 0000000..5d0c15b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/al_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/am_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/am_flag.png new file mode 100644 index 0000000..07a44ba Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/am_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ao_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ao_flag.png new file mode 100644 index 0000000..df47324 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ao_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/aq_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/aq_flag.png new file mode 100644 index 0000000..11bc6ad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/aq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ar_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ar_flag.png new file mode 100644 index 0000000..fa8476f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ar_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/as_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/as_flag.png new file mode 100644 index 0000000..1be0f5f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/as_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/at_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/at_flag.png new file mode 100644 index 0000000..9e130d5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/at_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/au_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/au_flag.png new file mode 100644 index 0000000..76a0302 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/au_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/aw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/aw_flag.png new file mode 100644 index 0000000..892e2dd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/aw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ax_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ax_flag.png new file mode 100644 index 0000000..d1b2b47 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ax_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/az_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/az_flag.png new file mode 100644 index 0000000..9a70890 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/az_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ba_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ba_flag.png new file mode 100644 index 0000000..f575b22 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ba_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bb_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bb_flag.png new file mode 100644 index 0000000..4e33fb6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bd_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bd_flag.png new file mode 100644 index 0000000..41a1553 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/be_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/be_flag.png new file mode 100644 index 0000000..eacd616 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/be_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bf_flag.png new file mode 100644 index 0000000..2f4eafc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bg_flag.png new file mode 100644 index 0000000..17be656 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bh_flag.png new file mode 100644 index 0000000..16d8c55 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bi_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bi_flag.png new file mode 100644 index 0000000..b66792f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bj_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bj_flag.png new file mode 100644 index 0000000..c14f78d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bl_flag.png new file mode 100644 index 0000000..22322c2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bm_flag.png new file mode 100644 index 0000000..3b16cdd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bn_flag.png new file mode 100644 index 0000000..ccbc104 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bo_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bo_flag.png new file mode 100644 index 0000000..7c03110 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bq_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bq_flag.png new file mode 100644 index 0000000..581c3eb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/br_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/br_flag.png new file mode 100644 index 0000000..9342e20 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/br_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bs_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bs_flag.png new file mode 100644 index 0000000..2917eb0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bt_flag.png new file mode 100644 index 0000000..e04a405 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bv_flag.png new file mode 100644 index 0000000..86ecf1d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bw_flag.png new file mode 100644 index 0000000..2931c0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/by_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/by_flag.png new file mode 100644 index 0000000..9ae253e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/by_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/bz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/bz_flag.png new file mode 100644 index 0000000..9d01c54 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/bz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ca_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ca_flag.png new file mode 100644 index 0000000..13d477d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ca_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cc_flag.png new file mode 100644 index 0000000..fff5394 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cd_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cd_flag.png new file mode 100644 index 0000000..055230d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cf_flag.png new file mode 100644 index 0000000..800f922 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cg_flag.png new file mode 100644 index 0000000..b09e1c2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ch_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ch_flag.png new file mode 100644 index 0000000..034f65a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ch_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ci_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ci_flag.png new file mode 100644 index 0000000..7d06284 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ci_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ck_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ck_flag.png new file mode 100644 index 0000000..7ea1408 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ck_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cl_flag.png new file mode 100644 index 0000000..d3adfff Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cm_flag.png new file mode 100644 index 0000000..edfe462 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cn_flag.png new file mode 100644 index 0000000..1183efb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/co_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/co_flag.png new file mode 100644 index 0000000..10f87c7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/co_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cr_flag.png new file mode 100644 index 0000000..070cf75 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cu_flag.png new file mode 100644 index 0000000..7342b38 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cv_flag.png new file mode 100644 index 0000000..eff3686 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cw_flag.png new file mode 100644 index 0000000..675183a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cx_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cx_flag.png new file mode 100644 index 0000000..12809ff Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cy_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cy_flag.png new file mode 100644 index 0000000..67c8b33 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/cz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/cz_flag.png new file mode 100644 index 0000000..c3d4efd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/cz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/de_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/de_flag.png new file mode 100644 index 0000000..2a05b3e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/de_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/dj_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/dj_flag.png new file mode 100644 index 0000000..fe9dc82 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/dj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/dk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/dk_flag.png new file mode 100644 index 0000000..8d49ee2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/dk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/dm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/dm_flag.png new file mode 100644 index 0000000..33605b3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/dm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/do_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/do_flag.png new file mode 100644 index 0000000..2a0bfce Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/do_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/dz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/dz_flag.png new file mode 100644 index 0000000..8ee6bc0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/dz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ec_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ec_flag.png new file mode 100644 index 0000000..31269c3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ec_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ee_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ee_flag.png new file mode 100644 index 0000000..61b99be Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ee_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/eg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/eg_flag.png new file mode 100644 index 0000000..d4f6eef Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/eg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/eh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/eh_flag.png new file mode 100644 index 0000000..fc5f66a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/eh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/er_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/er_flag.png new file mode 100644 index 0000000..40d43fd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/er_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/es_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/es_flag.png new file mode 100644 index 0000000..4f1e477 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/es_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/et_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/et_flag.png new file mode 100644 index 0000000..cd0489e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/et_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fi_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fi_flag.png new file mode 100644 index 0000000..06cfeb8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fj_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fj_flag.png new file mode 100644 index 0000000..cb18eff Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fk_flag.png new file mode 100644 index 0000000..1cafca8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fm_flag.png new file mode 100644 index 0000000..73c8d21 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fo_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fo_flag.png new file mode 100644 index 0000000..68088c0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/fr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/fr_flag.png new file mode 100644 index 0000000..3b5f728 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/fr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ga_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ga_flag.png new file mode 100644 index 0000000..fc29302 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ga_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gb_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gb_flag.png new file mode 100644 index 0000000..79e90e8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gd_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gd_flag.png new file mode 100644 index 0000000..dbdbc95 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ge_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ge_flag.png new file mode 100644 index 0000000..8ad28b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ge_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gf_flag.png new file mode 100644 index 0000000..3f4729c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gg_flag.png new file mode 100644 index 0000000..79a0a5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gh_flag.png new file mode 100644 index 0000000..5ec9773 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gi_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gi_flag.png new file mode 100644 index 0000000..260cd5d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gl_flag.png new file mode 100644 index 0000000..343dbad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gm_flag.png new file mode 100644 index 0000000..98f9e66 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gn_flag.png new file mode 100644 index 0000000..232ec46 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gp_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gp_flag.png new file mode 100644 index 0000000..ef71678 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gq_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gq_flag.png new file mode 100644 index 0000000..ebcbdb9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gr_flag.png new file mode 100644 index 0000000..d6bdca2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gs_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gs_flag.png new file mode 100644 index 0000000..e8ae76b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gt_flag.png new file mode 100644 index 0000000..2ca8659 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gu_flag.png new file mode 100644 index 0000000..897ef34 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gw_flag.png new file mode 100644 index 0000000..8b8b015 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/gy_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/gy_flag.png new file mode 100644 index 0000000..70c7db1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/gy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/hk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/hk_flag.png new file mode 100644 index 0000000..0a8bee5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/hk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/hm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/hm_flag.png new file mode 100644 index 0000000..aa5a461 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/hm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/hn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/hn_flag.png new file mode 100644 index 0000000..1bb38b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/hn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/hr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/hr_flag.png new file mode 100644 index 0000000..c9dfaad Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/hr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ht_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ht_flag.png new file mode 100644 index 0000000..ae5a8b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ht_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/hu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/hu_flag.png new file mode 100644 index 0000000..13b4ecc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/hu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher.png b/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..41260cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..41260cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/id_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/id_flag.png new file mode 100644 index 0000000..0044761 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/id_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ie_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ie_flag.png new file mode 100644 index 0000000..a7de25a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ie_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/il_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/il_flag.png new file mode 100644 index 0000000..7d31cdb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/il_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/im_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/im_flag.png new file mode 100644 index 0000000..b9b724d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/im_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/in_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/in_flag.png new file mode 100644 index 0000000..f6a5c19 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/in_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/io_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/io_flag.png new file mode 100644 index 0000000..8562df5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/io_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/iq_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/iq_flag.png new file mode 100644 index 0000000..ecc2676 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/iq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ir_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ir_flag.png new file mode 100644 index 0000000..ddd44db Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ir_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/is_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/is_flag.png new file mode 100644 index 0000000..d0119db Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/is_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/it_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/it_flag.png new file mode 100644 index 0000000..f89b56a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/it_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/je_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/je_flag.png new file mode 100644 index 0000000..3904c62 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/je_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/jm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/jm_flag.png new file mode 100644 index 0000000..f4bd452 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/jm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/jo_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/jo_flag.png new file mode 100644 index 0000000..65cc0b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/jo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/jp_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/jp_flag.png new file mode 100644 index 0000000..2ac4f1a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/jp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ke_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ke_flag.png new file mode 100644 index 0000000..15e24ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ke_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kg_flag.png new file mode 100644 index 0000000..b81350a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kh_flag.png new file mode 100644 index 0000000..9e07ad5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ki_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ki_flag.png new file mode 100644 index 0000000..a4aa892 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ki_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/km_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/km_flag.png new file mode 100644 index 0000000..8a6a7d4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/km_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kn_flag.png new file mode 100644 index 0000000..ca5ab4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kp_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kp_flag.png new file mode 100644 index 0000000..cff90c1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kr_flag.png new file mode 100644 index 0000000..85a6dfb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kw_flag.png new file mode 100644 index 0000000..2441f21 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ky_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ky_flag.png new file mode 100644 index 0000000..3ded1d2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ky_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/kz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/kz_flag.png new file mode 100644 index 0000000..320050d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/kz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/la_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/la_flag.png new file mode 100644 index 0000000..3efca94 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/la_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lb_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lb_flag.png new file mode 100644 index 0000000..f59394f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lc_flag.png new file mode 100644 index 0000000..52e9c14 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/li_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/li_flag.png new file mode 100644 index 0000000..61df103 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/li_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lk_flag.png new file mode 100644 index 0000000..a9116a6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lr_flag.png new file mode 100644 index 0000000..0744496 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ls_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ls_flag.png new file mode 100644 index 0000000..b0474a6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ls_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lt_flag.png new file mode 100644 index 0000000..39ed3a8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lu_flag.png new file mode 100644 index 0000000..9b472e1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/lv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/lv_flag.png new file mode 100644 index 0000000..7f9e5fa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/lv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ly_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ly_flag.png new file mode 100644 index 0000000..be123fb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ly_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ma_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ma_flag.png new file mode 100644 index 0000000..30d5630 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ma_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mc_flag.png new file mode 100644 index 0000000..dff86cd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/md_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/md_flag.png new file mode 100644 index 0000000..04c09c6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/md_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/me_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/me_flag.png new file mode 100644 index 0000000..9bdd91c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/me_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mf_flag.png new file mode 100644 index 0000000..0f009a1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mg_flag.png new file mode 100644 index 0000000..da64333 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mh_flag.png new file mode 100644 index 0000000..50a67b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mk_flag.png new file mode 100644 index 0000000..8e91d6f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ml_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ml_flag.png new file mode 100644 index 0000000..935ff21 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ml_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mm_flag.png new file mode 100644 index 0000000..3e66f4a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mn_flag.png new file mode 100644 index 0000000..45b3707 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mo_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mo_flag.png new file mode 100644 index 0000000..990b707 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mp_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mp_flag.png new file mode 100644 index 0000000..7b480de Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mq_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mq_flag.png new file mode 100644 index 0000000..c85c175 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mr_flag.png new file mode 100644 index 0000000..47880e4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ms_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ms_flag.png new file mode 100644 index 0000000..47880e4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ms_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mt_flag.png new file mode 100644 index 0000000..02603c9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mu_flag.png new file mode 100644 index 0000000..62dd7c8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mv_flag.png new file mode 100644 index 0000000..8a52548 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mw_flag.png new file mode 100644 index 0000000..38ea503 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mx_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mx_flag.png new file mode 100644 index 0000000..288a183 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/my_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/my_flag.png new file mode 100644 index 0000000..9ce4f6f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/my_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/mz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/mz_flag.png new file mode 100644 index 0000000..582cd61 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/mz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/na_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/na_flag.png new file mode 100644 index 0000000..77e753e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/na_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nc_flag.png new file mode 100644 index 0000000..86185e5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ne_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ne_flag.png new file mode 100644 index 0000000..2e05a7d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ne_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nf_flag.png new file mode 100644 index 0000000..335c37c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ng_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ng_flag.png new file mode 100644 index 0000000..cd09761 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ng_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ni_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ni_flag.png new file mode 100644 index 0000000..1e4b5b5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ni_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nl_flag.png new file mode 100644 index 0000000..4568d78 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/no_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/no_flag.png new file mode 100644 index 0000000..83a9820 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/no_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/np_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/np_flag.png new file mode 100644 index 0000000..7697d38 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/np_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nr_flag.png new file mode 100644 index 0000000..628383f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nu_flag.png new file mode 100644 index 0000000..3fd247d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/nz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/nz_flag.png new file mode 100644 index 0000000..f0d75e8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/nz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/om_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/om_flag.png new file mode 100644 index 0000000..a116df4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/om_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pa_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pa_flag.png new file mode 100644 index 0000000..f655aed Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pe_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pe_flag.png new file mode 100644 index 0000000..da24c3f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pe_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pf_flag.png new file mode 100644 index 0000000..43a885a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pg_flag.png new file mode 100644 index 0000000..b30fd97 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ph_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ph_flag.png new file mode 100644 index 0000000..5086c92 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ph_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pk_flag.png new file mode 100644 index 0000000..f596a27 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pl_flag.png new file mode 100644 index 0000000..b5581f3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pm_flag.png new file mode 100644 index 0000000..d7e308f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pn_flag.png new file mode 100644 index 0000000..3b6aa0c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pr_flag.png new file mode 100644 index 0000000..d727862 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ps_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ps_flag.png new file mode 100644 index 0000000..6046d0a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ps_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pt_flag.png new file mode 100644 index 0000000..9a43f74 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/pw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/pw_flag.png new file mode 100644 index 0000000..21ceebf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/pw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/py_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/py_flag.png new file mode 100644 index 0000000..87de2dc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/py_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/qa_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/qa_flag.png new file mode 100644 index 0000000..f46bc9c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/qa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/re_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/re_flag.png new file mode 100644 index 0000000..3b5f728 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/re_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ro_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ro_flag.png new file mode 100644 index 0000000..17d3362 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ro_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/rs_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/rs_flag.png new file mode 100644 index 0000000..6cf4ab4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/rs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ru_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ru_flag.png new file mode 100644 index 0000000..8487d88 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ru_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/rw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/rw_flag.png new file mode 100644 index 0000000..badb60f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/rw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sa_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sa_flag.png new file mode 100644 index 0000000..d1c83e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sb_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sb_flag.png new file mode 100644 index 0000000..c652927 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sc_flag.png new file mode 100644 index 0000000..c12c6fb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sd_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sd_flag.png new file mode 100644 index 0000000..a5a9de8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/se_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/se_flag.png new file mode 100644 index 0000000..ccefbe1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/se_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sg_flag.png new file mode 100644 index 0000000..b60b719 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sh_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sh_flag.png new file mode 100644 index 0000000..b32c5b4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/si_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/si_flag.png new file mode 100644 index 0000000..13185f2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/si_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sj_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sj_flag.png new file mode 100644 index 0000000..5dc439e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sk_flag.png new file mode 100644 index 0000000..81c112a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sl_flag.png new file mode 100644 index 0000000..4462e06 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sm_flag.png new file mode 100644 index 0000000..61d763a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sn_flag.png new file mode 100644 index 0000000..07db26d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/so_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/so_flag.png new file mode 100644 index 0000000..ea1dd2a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/so_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sr_flag.png new file mode 100644 index 0000000..0345cf2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ss_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ss_flag.png new file mode 100644 index 0000000..cbd9641 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ss_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/st_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/st_flag.png new file mode 100644 index 0000000..b6d9be4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/st_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sv_flag.png new file mode 100644 index 0000000..cc7a6ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sx_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sx_flag.png new file mode 100644 index 0000000..34ae445 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sy_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sy_flag.png new file mode 100644 index 0000000..f952640 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/sz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/sz_flag.png new file mode 100644 index 0000000..09484b5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/sz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tc_flag.png new file mode 100644 index 0000000..aeab4e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/td_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/td_flag.png new file mode 100644 index 0000000..1db6153 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/td_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tf_flag.png new file mode 100644 index 0000000..4a4f4c2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tg_flag.png new file mode 100644 index 0000000..fa9450f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/th_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/th_flag.png new file mode 100644 index 0000000..41e2867 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/th_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tj_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tj_flag.png new file mode 100644 index 0000000..fb2a825 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tk_flag.png new file mode 100644 index 0000000..c7bbd6f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tl_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tl_flag.png new file mode 100644 index 0000000..0a23ad6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tm_flag.png new file mode 100644 index 0000000..d63c895 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tn_flag.png new file mode 100644 index 0000000..8f0bed3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/to_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/to_flag.png new file mode 100644 index 0000000..0905c47 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/to_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tr_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tr_flag.png new file mode 100644 index 0000000..12ceb7b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tt_flag.png new file mode 100644 index 0000000..14866fd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tv_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tv_flag.png new file mode 100644 index 0000000..b37c5ca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tw_flag.png new file mode 100644 index 0000000..4458749 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/tz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/tz_flag.png new file mode 100644 index 0000000..c49fc84 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/tz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ua_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ua_flag.png new file mode 100644 index 0000000..b487e96 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ua_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ug_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ug_flag.png new file mode 100644 index 0000000..1822902 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ug_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/um_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/um_flag.png new file mode 100644 index 0000000..a82b979 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/um_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/unknown_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/unknown_flag.png new file mode 100644 index 0000000..438dd4e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/unknown_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/us_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/us_flag.png new file mode 100644 index 0000000..a82b979 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/us_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/uy_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/uy_flag.png new file mode 100644 index 0000000..726ceb8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/uy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/uz_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/uz_flag.png new file mode 100644 index 0000000..2b7cde7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/uz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/va_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/va_flag.png new file mode 100644 index 0000000..45c2bdb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/va_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/vc_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/vc_flag.png new file mode 100644 index 0000000..6a32bfb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/vc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ve_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ve_flag.png new file mode 100644 index 0000000..ec7ab39 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ve_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/vg_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/vg_flag.png new file mode 100644 index 0000000..a159a39 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/vg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/vi_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/vi_flag.png new file mode 100644 index 0000000..86bef30 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/vi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/vn_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/vn_flag.png new file mode 100644 index 0000000..ccdbb50 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/vn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/vu_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/vu_flag.png new file mode 100644 index 0000000..81ba135 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/vu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/wf_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/wf_flag.png new file mode 100644 index 0000000..f044fea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/wf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ws_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ws_flag.png new file mode 100644 index 0000000..59bdfe5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ws_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/xk_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/xk_flag.png new file mode 100644 index 0000000..b642a61 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/xk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/ye_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/ye_flag.png new file mode 100644 index 0000000..467ff02 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/ye_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/yt_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/yt_flag.png new file mode 100644 index 0000000..c05140c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/yt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/za_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/za_flag.png new file mode 100644 index 0000000..69fee28 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/za_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/zm_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/zm_flag.png new file mode 100644 index 0000000..9c52790 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/zm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxhdpi/zw_flag.png b/countrypicker/src/main/res/mipmap-xxhdpi/zw_flag.png new file mode 100644 index 0000000..ac56ef7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxhdpi/zw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ab_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ab_flag.png new file mode 100644 index 0000000..47d7145 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ab_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ad_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ad_flag.png new file mode 100644 index 0000000..bdc678d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ad_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ae_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ae_flag.png new file mode 100644 index 0000000..6bb700f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ae_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/af_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/af_flag.png new file mode 100644 index 0000000..c67a475 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/af_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ag_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ag_flag.png new file mode 100644 index 0000000..301b05a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ag_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ai_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ai_flag.png new file mode 100644 index 0000000..7c4e926 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ai_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/al_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/al_flag.png new file mode 100644 index 0000000..f28c191 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/al_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/am_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/am_flag.png new file mode 100644 index 0000000..3860443 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/am_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ao_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ao_flag.png new file mode 100644 index 0000000..dd16bec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ao_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/aq_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/aq_flag.png new file mode 100644 index 0000000..c2cd0de Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/aq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ar_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ar_flag.png new file mode 100644 index 0000000..2a7befe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ar_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/as_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/as_flag.png new file mode 100644 index 0000000..3d13cec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/as_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/at_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/at_flag.png new file mode 100644 index 0000000..fe57f41 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/at_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/au_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/au_flag.png new file mode 100644 index 0000000..1b97e07 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/au_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/aw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/aw_flag.png new file mode 100644 index 0000000..14b66c0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/aw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ax_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ax_flag.png new file mode 100644 index 0000000..ab4f455 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ax_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/az_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/az_flag.png new file mode 100644 index 0000000..a9d2248 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/az_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ba_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ba_flag.png new file mode 100644 index 0000000..7569475 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ba_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bb_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bb_flag.png new file mode 100644 index 0000000..dbdcd4c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bd_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bd_flag.png new file mode 100644 index 0000000..f222190 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/be_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/be_flag.png new file mode 100644 index 0000000..15c4a17 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/be_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bf_flag.png new file mode 100644 index 0000000..06feff9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bg_flag.png new file mode 100644 index 0000000..f2f9416 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bh_flag.png new file mode 100644 index 0000000..1331c69 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bi_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bi_flag.png new file mode 100644 index 0000000..05eb546 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bj_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bj_flag.png new file mode 100644 index 0000000..adf931d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bl_flag.png new file mode 100644 index 0000000..0f691ee Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bm_flag.png new file mode 100644 index 0000000..f258555 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bn_flag.png new file mode 100644 index 0000000..7bf9099 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bo_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bo_flag.png new file mode 100644 index 0000000..8766556 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bq_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bq_flag.png new file mode 100644 index 0000000..91a1b5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/br_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/br_flag.png new file mode 100644 index 0000000..8431312 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/br_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bs_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bs_flag.png new file mode 100644 index 0000000..7091a17 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bt_flag.png new file mode 100644 index 0000000..f33bb7b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bv_flag.png new file mode 100644 index 0000000..8d99708 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bw_flag.png new file mode 100644 index 0000000..fe63507 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/by_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/by_flag.png new file mode 100644 index 0000000..fcb9ff1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/by_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/bz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/bz_flag.png new file mode 100644 index 0000000..a221962 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/bz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ca_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ca_flag.png new file mode 100644 index 0000000..0ba9015 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ca_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cc_flag.png new file mode 100644 index 0000000..dcd85b3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cd_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cd_flag.png new file mode 100644 index 0000000..25b0efc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cf_flag.png new file mode 100644 index 0000000..acf4f9a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cg_flag.png new file mode 100644 index 0000000..f7b44f3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ch_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ch_flag.png new file mode 100644 index 0000000..6063dcf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ch_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ci_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ci_flag.png new file mode 100644 index 0000000..be1d850 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ci_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ck_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ck_flag.png new file mode 100644 index 0000000..1d0766a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ck_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cl_flag.png new file mode 100644 index 0000000..24eab97 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cm_flag.png new file mode 100644 index 0000000..f92832e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cn_flag.png new file mode 100644 index 0000000..f5700ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/co_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/co_flag.png new file mode 100644 index 0000000..552007f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/co_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cr_flag.png new file mode 100644 index 0000000..53ccbf9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cu_flag.png new file mode 100644 index 0000000..d9f3aca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cv_flag.png new file mode 100644 index 0000000..afdce25 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cw_flag.png new file mode 100644 index 0000000..3d0301d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cx_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cx_flag.png new file mode 100644 index 0000000..1e59886 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cy_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cy_flag.png new file mode 100644 index 0000000..4a6ee00 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/cz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/cz_flag.png new file mode 100644 index 0000000..acd5858 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/cz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/de_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/de_flag.png new file mode 100644 index 0000000..38adc17 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/de_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/dj_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/dj_flag.png new file mode 100644 index 0000000..e10ed97 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/dj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/dk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/dk_flag.png new file mode 100644 index 0000000..b0c8200 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/dk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/dm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/dm_flag.png new file mode 100644 index 0000000..c80e166 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/dm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/do_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/do_flag.png new file mode 100644 index 0000000..af32d4c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/do_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/dz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/dz_flag.png new file mode 100644 index 0000000..6fa0742 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/dz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ec_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ec_flag.png new file mode 100644 index 0000000..d7070b6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ec_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ee_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ee_flag.png new file mode 100644 index 0000000..eda1946 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ee_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/eg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/eg_flag.png new file mode 100644 index 0000000..205a393 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/eg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/eh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/eh_flag.png new file mode 100644 index 0000000..48c15f8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/eh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/er_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/er_flag.png new file mode 100644 index 0000000..7800234 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/er_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/es_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/es_flag.png new file mode 100644 index 0000000..057733c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/es_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/et_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/et_flag.png new file mode 100644 index 0000000..f894bfc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/et_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fi_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fi_flag.png new file mode 100644 index 0000000..2c27dec Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fj_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fj_flag.png new file mode 100644 index 0000000..7d0b197 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fk_flag.png new file mode 100644 index 0000000..df597f3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fm_flag.png new file mode 100644 index 0000000..ca4ffcb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fo_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fo_flag.png new file mode 100644 index 0000000..750e7ed Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/fr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/fr_flag.png new file mode 100644 index 0000000..d88ff59 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/fr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ga_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ga_flag.png new file mode 100644 index 0000000..80752ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ga_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gb_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gb_flag.png new file mode 100644 index 0000000..c35b9a5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gd_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gd_flag.png new file mode 100644 index 0000000..8f17de8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ge_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ge_flag.png new file mode 100644 index 0000000..7a3b726 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ge_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gf_flag.png new file mode 100644 index 0000000..18f08c4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gg_flag.png new file mode 100644 index 0000000..b8e2ba6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gh_flag.png new file mode 100644 index 0000000..9fa18ea Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gi_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gi_flag.png new file mode 100644 index 0000000..80699b2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gl_flag.png new file mode 100644 index 0000000..ec15047 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gm_flag.png new file mode 100644 index 0000000..97b3b57 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gn_flag.png new file mode 100644 index 0000000..cf28d38 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gp_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gp_flag.png new file mode 100644 index 0000000..f372b05 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gq_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gq_flag.png new file mode 100644 index 0000000..990d298 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gr_flag.png new file mode 100644 index 0000000..add3f0f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gs_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gs_flag.png new file mode 100644 index 0000000..dc67b6f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gt_flag.png new file mode 100644 index 0000000..6ab6327 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gu_flag.png new file mode 100644 index 0000000..1b6addd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gw_flag.png new file mode 100644 index 0000000..f72e052 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/gy_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/gy_flag.png new file mode 100644 index 0000000..38280b9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/gy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/hk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/hk_flag.png new file mode 100644 index 0000000..9be83be Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/hk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/hm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/hm_flag.png new file mode 100644 index 0000000..9fceb7b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/hm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/hn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/hn_flag.png new file mode 100644 index 0000000..754747e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/hn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/hr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/hr_flag.png new file mode 100644 index 0000000..b8417ac Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/hr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ht_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ht_flag.png new file mode 100644 index 0000000..a503c11 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ht_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/hu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/hu_flag.png new file mode 100644 index 0000000..a44680d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/hu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..b3ec6e1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..b3ec6e1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/id_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/id_flag.png new file mode 100644 index 0000000..af8bba2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/id_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ie_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ie_flag.png new file mode 100644 index 0000000..5688711 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ie_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/il_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/il_flag.png new file mode 100644 index 0000000..8797edf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/il_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/im_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/im_flag.png new file mode 100644 index 0000000..2b1b74a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/im_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/in_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/in_flag.png new file mode 100644 index 0000000..2e9bae4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/in_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/io_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/io_flag.png new file mode 100644 index 0000000..9dcf1a4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/io_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/iq_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/iq_flag.png new file mode 100644 index 0000000..60d6ffe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/iq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ir_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ir_flag.png new file mode 100644 index 0000000..aec346b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ir_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/is_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/is_flag.png new file mode 100644 index 0000000..c7a2e54 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/is_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/it_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/it_flag.png new file mode 100644 index 0000000..ed40a98 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/it_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/je_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/je_flag.png new file mode 100644 index 0000000..cf76230 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/je_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/jm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/jm_flag.png new file mode 100644 index 0000000..94653df Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/jm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/jo_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/jo_flag.png new file mode 100644 index 0000000..e97348a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/jo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/jp_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/jp_flag.png new file mode 100644 index 0000000..7856a40 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/jp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ke_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ke_flag.png new file mode 100644 index 0000000..25bcceb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ke_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kg_flag.png new file mode 100644 index 0000000..f08a20e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kh_flag.png new file mode 100644 index 0000000..846d8ab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ki_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ki_flag.png new file mode 100644 index 0000000..396dbdb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ki_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/km_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/km_flag.png new file mode 100644 index 0000000..82d4d2c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/km_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kn_flag.png new file mode 100644 index 0000000..a431623 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kp_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kp_flag.png new file mode 100644 index 0000000..446744b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kr_flag.png new file mode 100644 index 0000000..f9d66c5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kw_flag.png new file mode 100644 index 0000000..7ba7032 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ky_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ky_flag.png new file mode 100644 index 0000000..e93e510 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ky_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/kz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/kz_flag.png new file mode 100644 index 0000000..a39bab5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/kz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/la_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/la_flag.png new file mode 100644 index 0000000..2c744bc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/la_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lb_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lb_flag.png new file mode 100644 index 0000000..c9638f2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lc_flag.png new file mode 100644 index 0000000..47c54fc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/li_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/li_flag.png new file mode 100644 index 0000000..fb59dcb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/li_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lk_flag.png new file mode 100644 index 0000000..4c653b8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lr_flag.png new file mode 100644 index 0000000..8bab9ef Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ls_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ls_flag.png new file mode 100644 index 0000000..d92d276 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ls_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lt_flag.png new file mode 100644 index 0000000..af6df71 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lu_flag.png new file mode 100644 index 0000000..661aa63 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/lv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/lv_flag.png new file mode 100644 index 0000000..f8ecb73 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/lv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ly_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ly_flag.png new file mode 100644 index 0000000..7ce888a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ly_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ma_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ma_flag.png new file mode 100644 index 0000000..14a3fc7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ma_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mc_flag.png new file mode 100644 index 0000000..718007a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/md_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/md_flag.png new file mode 100644 index 0000000..2e30b31 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/md_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/me_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/me_flag.png new file mode 100644 index 0000000..3e18924 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/me_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mf_flag.png new file mode 100644 index 0000000..3a6d6eb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mg_flag.png new file mode 100644 index 0000000..e4ccedb Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mh_flag.png new file mode 100644 index 0000000..7a7555b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mk_flag.png new file mode 100644 index 0000000..63554cf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ml_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ml_flag.png new file mode 100644 index 0000000..0eb811b Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ml_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mm_flag.png new file mode 100644 index 0000000..e40ce29 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mn_flag.png new file mode 100644 index 0000000..258fa1d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mo_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mo_flag.png new file mode 100644 index 0000000..91433d9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mo_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mp_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mp_flag.png new file mode 100644 index 0000000..433f714 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mp_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mq_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mq_flag.png new file mode 100644 index 0000000..fca43fa Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mq_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mr_flag.png new file mode 100644 index 0000000..61c252e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ms_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ms_flag.png new file mode 100644 index 0000000..61c252e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ms_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mt_flag.png new file mode 100644 index 0000000..372cfca Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mu_flag.png new file mode 100644 index 0000000..0a399e2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mv_flag.png new file mode 100644 index 0000000..b1640d6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mw_flag.png new file mode 100644 index 0000000..3a2b055 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mx_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mx_flag.png new file mode 100644 index 0000000..1a66fe9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/my_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/my_flag.png new file mode 100644 index 0000000..f1dfa52 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/my_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/mz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/mz_flag.png new file mode 100644 index 0000000..7f4fb14 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/mz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/na_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/na_flag.png new file mode 100644 index 0000000..60ab0ef Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/na_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nc_flag.png new file mode 100644 index 0000000..4fe6d42 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ne_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ne_flag.png new file mode 100644 index 0000000..037f74c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ne_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nf_flag.png new file mode 100644 index 0000000..e096e19 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ng_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ng_flag.png new file mode 100644 index 0000000..fd65c98 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ng_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ni_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ni_flag.png new file mode 100644 index 0000000..797de03 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ni_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nl_flag.png new file mode 100644 index 0000000..b330bee Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/no_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/no_flag.png new file mode 100644 index 0000000..9b49d95 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/no_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/np_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/np_flag.png new file mode 100644 index 0000000..b4ac4db Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/np_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nr_flag.png new file mode 100644 index 0000000..8cd2c8a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nu_flag.png new file mode 100644 index 0000000..2f49489 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/nz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/nz_flag.png new file mode 100644 index 0000000..c9c8589 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/nz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/om_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/om_flag.png new file mode 100644 index 0000000..23fbd5c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/om_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pa_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pa_flag.png new file mode 100644 index 0000000..d73efa9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pe_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pe_flag.png new file mode 100644 index 0000000..5d57421 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pe_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pf_flag.png new file mode 100644 index 0000000..c324a3f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pg_flag.png new file mode 100644 index 0000000..677ca60 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ph_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ph_flag.png new file mode 100644 index 0000000..42bd914 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ph_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pk_flag.png new file mode 100644 index 0000000..e40a0fe Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pl_flag.png new file mode 100644 index 0000000..592ad43 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pm_flag.png new file mode 100644 index 0000000..7937e09 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pn_flag.png new file mode 100644 index 0000000..b9a4fdd Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pr_flag.png new file mode 100644 index 0000000..61992f8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ps_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ps_flag.png new file mode 100644 index 0000000..764fba5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ps_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pt_flag.png new file mode 100644 index 0000000..ce1f193 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/pw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/pw_flag.png new file mode 100644 index 0000000..681559a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/pw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/py_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/py_flag.png new file mode 100644 index 0000000..e051ac1 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/py_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/qa_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/qa_flag.png new file mode 100644 index 0000000..2b4e888 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/qa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/re_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/re_flag.png new file mode 100644 index 0000000..d88ff59 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/re_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ro_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ro_flag.png new file mode 100644 index 0000000..4150b0e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ro_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/rs_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/rs_flag.png new file mode 100644 index 0000000..e30185a Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/rs_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ru_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ru_flag.png new file mode 100644 index 0000000..90d6e33 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ru_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/rw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/rw_flag.png new file mode 100644 index 0000000..58c0df9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/rw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sa_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sa_flag.png new file mode 100644 index 0000000..67737b8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sa_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sb_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sb_flag.png new file mode 100644 index 0000000..ae427f6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sb_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sc_flag.png new file mode 100644 index 0000000..0d4f3f5 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sd_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sd_flag.png new file mode 100644 index 0000000..44d99bc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sd_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/se_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/se_flag.png new file mode 100644 index 0000000..daeec32 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/se_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sg_flag.png new file mode 100644 index 0000000..47c44b0 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sh_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sh_flag.png new file mode 100644 index 0000000..d96e6bf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sh_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/si_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/si_flag.png new file mode 100644 index 0000000..4b97f44 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/si_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sj_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sj_flag.png new file mode 100644 index 0000000..adb811c Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sk_flag.png new file mode 100644 index 0000000..9cc9010 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sl_flag.png new file mode 100644 index 0000000..46075f9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sm_flag.png new file mode 100644 index 0000000..338d17e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sn_flag.png new file mode 100644 index 0000000..08b8485 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/so_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/so_flag.png new file mode 100644 index 0000000..922dcf2 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/so_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sr_flag.png new file mode 100644 index 0000000..5f5fa10 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ss_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ss_flag.png new file mode 100644 index 0000000..da405c7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ss_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/st_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/st_flag.png new file mode 100644 index 0000000..b0b79f4 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/st_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sv_flag.png new file mode 100644 index 0000000..7df4571 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sx_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sx_flag.png new file mode 100644 index 0000000..ed950bc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sx_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sy_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sy_flag.png new file mode 100644 index 0000000..d47c3de Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/sz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/sz_flag.png new file mode 100644 index 0000000..4354646 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/sz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tc_flag.png new file mode 100644 index 0000000..5ef6b1e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/td_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/td_flag.png new file mode 100644 index 0000000..64ed11f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/td_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tf_flag.png new file mode 100644 index 0000000..0ce12ab Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tg_flag.png new file mode 100644 index 0000000..e901b46 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/th_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/th_flag.png new file mode 100644 index 0000000..7ce2bbf Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/th_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tj_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tj_flag.png new file mode 100644 index 0000000..434989d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tj_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tk_flag.png new file mode 100644 index 0000000..fb01034 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tl_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tl_flag.png new file mode 100644 index 0000000..f9661cc Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tl_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tm_flag.png new file mode 100644 index 0000000..1255f22 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tn_flag.png new file mode 100644 index 0000000..2ae818e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/to_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/to_flag.png new file mode 100644 index 0000000..70937d3 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/to_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tr_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tr_flag.png new file mode 100644 index 0000000..c692467 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tr_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tt_flag.png new file mode 100644 index 0000000..7087277 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tv_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tv_flag.png new file mode 100644 index 0000000..80f88b6 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tv_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tw_flag.png new file mode 100644 index 0000000..bc12c65 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tw_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/tz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/tz_flag.png new file mode 100644 index 0000000..67d36da Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/tz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ua_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ua_flag.png new file mode 100644 index 0000000..920b0db Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ua_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ug_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ug_flag.png new file mode 100644 index 0000000..bb15f8f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ug_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/um_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/um_flag.png new file mode 100644 index 0000000..fa0119e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/um_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/unknown_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/unknown_flag.png new file mode 100644 index 0000000..17cc94f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/unknown_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/us_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/us_flag.png new file mode 100644 index 0000000..fa0119e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/us_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/uy_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/uy_flag.png new file mode 100644 index 0000000..38ad499 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/uy_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/uz_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/uz_flag.png new file mode 100644 index 0000000..31d7fe7 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/uz_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/va_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/va_flag.png new file mode 100644 index 0000000..61d1652 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/va_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/vc_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/vc_flag.png new file mode 100644 index 0000000..b75a105 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/vc_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ve_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ve_flag.png new file mode 100644 index 0000000..16bc803 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ve_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/vg_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/vg_flag.png new file mode 100644 index 0000000..f692047 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/vg_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/vi_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/vi_flag.png new file mode 100644 index 0000000..3e93e35 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/vi_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/vn_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/vn_flag.png new file mode 100644 index 0000000..5cf27e8 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/vn_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/vu_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/vu_flag.png new file mode 100644 index 0000000..2296a20 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/vu_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/wf_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/wf_flag.png new file mode 100644 index 0000000..7653f7d Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/wf_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ws_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ws_flag.png new file mode 100644 index 0000000..6c496f9 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ws_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/xk_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/xk_flag.png new file mode 100644 index 0000000..204f53f Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/xk_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/ye_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/ye_flag.png new file mode 100644 index 0000000..1d48e5e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/ye_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/yt_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/yt_flag.png new file mode 100644 index 0000000..5769146 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/yt_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/za_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/za_flag.png new file mode 100644 index 0000000..cb3ce93 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/za_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/zm_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/zm_flag.png new file mode 100644 index 0000000..669950e Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/zm_flag.png differ diff --git a/countrypicker/src/main/res/mipmap-xxxhdpi/zw_flag.png b/countrypicker/src/main/res/mipmap-xxxhdpi/zw_flag.png new file mode 100644 index 0000000..1de6823 Binary files /dev/null and b/countrypicker/src/main/res/mipmap-xxxhdpi/zw_flag.png differ diff --git a/countrypicker/src/main/res/raw/countries_dialing_code.json b/countrypicker/src/main/res/raw/countries_dialing_code.json new file mode 100644 index 0000000..2bf9b39 --- /dev/null +++ b/countrypicker/src/main/res/raw/countries_dialing_code.json @@ -0,0 +1,251 @@ +{ + "AD": "376", + "AE": "971", + "AF": "93", + "AG": "1", + "AI": "1", + "AL": "355", + "AM": "374", + "AO": "244", + "AQ": "672", + "AR": "54", + "AS": "1", + "AT": "43", + "AU": "61", + "AW": "297", + "AX": "358", + "AZ": "994", + "BA": "387", + "BB": "1", + "BD": "880", + "BE": "32", + "BF": "226", + "BG": "359", + "BH": "973", + "BI": "257", + "BJ": "229", + "BL": "590", + "BM": "1", + "BN": "673", + "BO": "591", + "BQ": "599", + "BR": "55", + "BS": "1", + "BT": "975", + "BV": "55", + "BW": "267", + "BY": "375", + "BZ": "501", + "CA": "1", + "CC": "891", + "CD": "243", + "CF": "236", + "CG": "242", + "CH": "41", + "CI": "225", + "CK": "682", + "CL": "56", + "CM": "237", + "CN": "86", + "CO": "57", + "CR": "506", + "CU": "53", + "CV": "238", + "CW": "599", + "CX": "61", + "CY": "357", + "CZ": "420", + "DE": "49", + "DJ": "253", + "DK": "45", + "DM": "1", + "DO": "1", + "DZ": "213", + "EC": "593", + "EE": "372", + "EG": "20", + "EH": "212", + "ER": "291", + "ES": "34", + "ET": "251", + "FI": "358", + "FJ": "679", + "FK": "500", + "FM": "691", + "FO": "298", + "FR": "33", + "GA": "241", + "GB": "44", + "GD": "1", + "GE": "995", + "GF": "594", + "GG": "44", + "GH": "233", + "GI": "350", + "GL": "299", + "GM": "220", + "GN": "224", + "GP": "590", + "GQ": "240", + "GR": "30", + "GS": "500", + "GT": "502", + "GU": "1", + "GW": "245", + "GY": "592", + "HK": "852", + "HM": "61", + "HN": "504", + "HR": "385", + "HT": "509", + "HU": "36", + "ID": "62", + "IE": "353", + "IL": "972", + "IM": "44", + "IN": "91", + "IO": "246", + "IQ": "964", + "IR": "98", + "IS": "354", + "IT": "39", + "JE": "44", + "JM": "1", + "JO": "962", + "JP": "81", + "KE": "254", + "KG": "996", + "KH": "855", + "KI": "686", + "KM": "269", + "KN": "1", + "KP": "850", + "KR": "82", + "KW": "965", + "KY": "965", + "KZ": "7", + "LA": "856", + "LB": "961", + "LC": "1", + "LI": "423", + "LK": "94", + "LR": "231", + "LS": "266", + "LT": "370", + "LU": "352", + "LV": "371", + "LY": "218", + "MA": "212", + "MC": "377", + "MD": "373", + "ME": "382", + "MF": "1", + "MG": "261", + "MH": "692", + "MK": "389", + "ML": "223", + "MM": "95", + "MN": "976", + "MO": "853", + "MP": "1", + "MQ": "596", + "MR": "222", + "MS": "1", + "MT": "356", + "MU": "230", + "MV": "960", + "MW": "265", + "MX": "52", + "MY": "60", + "MZ": "258", + "NA": "264", + "NC": "687", + "NE": "227", + "NF": "672", + "NG": "234", + "NI": "505", + "NL": "31", + "NO": "47", + "NP": "977", + "NR": "674", + "NU": "683", + "NZ": "64", + "OM": "968", + "PA": "507", + "PE": "51", + "PF": "689", + "PG": "675", + "PH": "63", + "PK": "92", + "PL": "48", + "PM": "508", + "PN": "64", + "PR": "1", + "PS": "970", + "PT": "351", + "PW": "680", + "PY": "595", + "QA": "974", + "RE": "262", + "RO": "40", + "RS": "381", + "RU": "7", + "RW": "250", + "SA": "966", + "SB": "677", + "SC": "248", + "SD": "249", + "SE": "46", + "SG": "65", + "SH": "290", + "SI": "386", + "SJ": "47", + "SK": "421", + "SL": "232", + "SM": "378", + "SN": "221", + "SO": "252", + "SR": "597", + "SS": "211", + "ST": "239", + "SV": "503", + "SX": "1", + "SY": "963", + "SZ": "268", + "TC": "1", + "TD": "235", + "TF": "262", + "TG": "228", + "TH": "66", + "TJ": "992", + "TK": "690", + "TL": "670", + "TM": "993", + "TN": "216", + "TO": "676", + "TR": "90", + "TT": "1", + "TV": "688", + "TW": "886", + "TZ": "255", + "UA": "380", + "UG": "256", + "UM": "1", + "US": "1", + "UY": "598", + "UZ": "998", + "VA": "379", + "VC": "1", + "VE": "58", + "VG": "1", + "VI": "1", + "VN": "84", + "VU": "678", + "WF": "681", + "WS": "685", + "YE": "967", + "YT": "262", + "ZA": "27", + "ZM": "260", + "ZW": "263" +} \ No newline at end of file diff --git a/countrypicker/src/main/res/raw/keep.xml b/countrypicker/src/main/res/raw/keep.xml new file mode 100644 index 0000000..9fe3491 --- /dev/null +++ b/countrypicker/src/main/res/raw/keep.xml @@ -0,0 +1,3 @@ + + \ No newline at end of file diff --git a/countrypicker/src/main/res/values/strings.xml b/countrypicker/src/main/res/values/strings.xml new file mode 100644 index 0000000..e4e343b --- /dev/null +++ b/countrypicker/src/main/res/values/strings.xml @@ -0,0 +1,8 @@ + + CountryPicker + (+%1$s) + Country Flag + Search + Choose a Country + + diff --git a/countrypicker/src/main/unknown_flag-web.png b/countrypicker/src/main/unknown_flag-web.png new file mode 100644 index 0000000..a50011f Binary files /dev/null and b/countrypicker/src/main/unknown_flag-web.png differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6c4ea01..1e820fe 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Wed May 18 08:34:14 BST 2016 +#Wed May 31 18:01:56 EDT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip diff --git a/gradlew b/gradlew old mode 100755 new mode 100644 diff --git a/gradlew.bat b/gradlew.bat index aec9973..8a0b282 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -1,90 +1,90 @@ -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto init - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:init -@rem Get command-line arguments, handling Windowz variants - -if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/proguard-rules.pro b/proguard-rules.pro deleted file mode 100644 index 03928d8..0000000 --- a/proguard-rules.pro +++ /dev/null @@ -1,17 +0,0 @@ -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in /Users/Ekami/Library/Android/sdk/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the proguardFiles -# directive in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} diff --git a/sample/.gitignore b/sample/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/sample/.gitignore @@ -0,0 +1 @@ +/build diff --git a/sample/build.gradle b/sample/build.gradle new file mode 100644 index 0000000..3ff4dfa --- /dev/null +++ b/sample/build.gradle @@ -0,0 +1,28 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 25 + buildToolsVersion "25.0.2" + + defaultConfig { + applicationId "io.xsor.countrypickersample" + minSdkVersion 14 + targetSdkVersion 25 + versionCode 1 + versionName "1.0" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile project(':countrypicker') + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support.constraint:constraint-layout:1.0.1' + compile 'com.jakewharton:butterknife:8.6.0' + annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0' +} diff --git a/sample/proguard-rules.pro b/sample/proguard-rules.pro new file mode 100644 index 0000000..7343f5f --- /dev/null +++ b/sample/proguard-rules.pro @@ -0,0 +1,17 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Samed\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/sample/src/main/AndroidManifest.xml b/sample/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a4160c2 --- /dev/null +++ b/sample/src/main/AndroidManifest.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sample/src/main/java/io/xsor/countrypickersample/MainActivity.java b/sample/src/main/java/io/xsor/countrypickersample/MainActivity.java new file mode 100644 index 0000000..12dd5c7 --- /dev/null +++ b/sample/src/main/java/io/xsor/countrypickersample/MainActivity.java @@ -0,0 +1,93 @@ +package io.xsor.countrypickersample; + +import android.os.Bundle; +import android.support.v7.app.AppCompatActivity; +import android.view.View; +import android.widget.CheckBox; +import android.widget.ImageView; +import android.widget.RadioButton; +import android.widget.TextView; +import butterknife.BindView; +import butterknife.ButterKnife; +import butterknife.OnCheckedChanged; +import butterknife.OnClick; +import io.xsor.countrypicker.Country; +import io.xsor.countrypicker.CountryPickerDialog; + +public class MainActivity extends AppCompatActivity { + + private CountryPickerDialog countryPickerDialog; + private String scrollToCountry; + private boolean roundFlags = true; + private boolean dialingCodes; + + @BindView(R.id.ivFlag) + ImageView ivFlag; + @BindView(R.id.tvCountry) + TextView tvCountry; + + CountryPickerDialog.Listener callback = new CountryPickerDialog.Listener() { + @Override + public void onCountrySelected(Country country, int flagResId) { + ivFlag.setImageResource(flagResId); + tvCountry.setText(String.format(getString(R.string.selected_country), + country.getCountryName(), + country.getIsoCode(), + country.getDialingCodeInt())); + scrollToCountry = country.getIsoCode(); + countryPickerDialog.dismiss(); + } + }; + + @OnClick(R.id.btShowDialog) + void onShowDialogClick(View v) { + makeDialog(); + countryPickerDialog.setScrollToCountry(null); + countryPickerDialog.show(); + } + + @OnClick(R.id.btShowDialogScroll) + void onShowDialogScrollClick(View v) { + makeDialog(); + countryPickerDialog.setScrollToCountry(scrollToCountry); + countryPickerDialog.show(); + } + + @OnClick({R.id.rbNormal, R.id.rbRound}) + void onRadioButtonsClicked(RadioButton rb) { + + boolean checked = rb.isChecked(); + + if (checked) { + switch (rb.getId()) { + case R.id.rbNormal: + roundFlags = false; + break; + case R.id.rbRound: + roundFlags = true; + break; + } + } + } + + @OnCheckedChanged(R.id.cbDialingCode) + void onDialingCodeCheckboxChange(CheckBox cb) { + dialingCodes = cb.isChecked(); + } + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + ButterKnife.bind(this); + + makeDialog(); + + } + + public void makeDialog() { + countryPickerDialog = null; + countryPickerDialog = new CountryPickerDialog(this, roundFlags, dialingCodes, callback); + } +} diff --git a/sample/src/main/res/layout/activity_main.xml b/sample/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..98c23e8 --- /dev/null +++ b/sample/src/main/res/layout/activity_main.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + +