Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50d40fb1 authored by kaiyiz's avatar kaiyiz
Browse files

Contacts: Fail to export 1500 contacts to SIM card

There is a limitation that user can only export 500
contacts to SIM card once.

Modify the limitation to 2000, and prompt how many
contacts have been exported when SIM card is full.

CRs-Fixed: 711982

Change-Id: Id377469a32f90cdffa3d26d63aabf1e8162f5d12
parent d4421f15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ public class MultiPickContactActivity extends ListActivity implements
     */
    private static final String EXT_NOT_SHOW_SIM_FLAG = "not_sim_show";

    private int MAX_CONTACTS_NUM_TO_SELECT_ONCE = 500;
    private int MAX_CONTACTS_NUM_TO_SELECT_ONCE = 2000;

    //registerReceiver to update content when airplane mode change.
    private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {