ispam

Results 4 comments of ispam

This might resolve the issue. In your parent activity ``` // Kotlin override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { super.onActivityResult(requestCode, resultCode, data) for (fragment in supportFragmentManager.fragments) { fragment.onActivityResult(requestCode,...

That is happening on this [PR](https://github.com/broakenmedia/MultiContactPicker/pull/52). Just need a couple of more reviews and resolve conflicts and should be G2G

Sure, no problem! 👍

There are currently 3 supported columns while creating the column, LimitColumn.EMAIL, LimitColumn.PHONE and LimitColumn.NONE ``` MultiContactPicker.Builder(this). .limitToColumn(LimitColumn.PHONE) //Optional - default NONE (Include phone + email, limiting to one can improve...