public void removeCustomPersonData(@SuppressWarnings("unused") View view) { EditText keyText = (EditText) findViewById(R.id.remove_custom_person_data_key); String key = (keyText).getText().toString().trim(); keyText.setText(null); Apptentive.removeCustomPersonData(this, key); }
public static void removeCustomPersonData( final ForgeTask task, @ForgeParam("key") final String key) { Apptentive.removeCustomPersonData(ForgeApp.getActivity(), key); }