Skip to content

Commit

Permalink
Disabled rides for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ischeinkman committed May 18, 2015
1 parent 188baa0 commit 2763e0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class AddCustomAlephFragment extends Fragment {

//The email to send new aleph information to
private static final String UPDATE_EMAIL="";
private static final String[] UPDATE_EMAIL={"ramon195aza@gmail.com"};



Expand Down Expand Up @@ -133,7 +133,7 @@ public void onClick(View v) {
Intent updateEmailIntent=new Intent(Intent.ACTION_SEND);
updateEmailIntent.setType("text/html");
updateEmailIntent.putExtra(Intent.EXTRA_EMAIL, UPDATE_EMAIL);
updateEmailIntent.putExtra(Intent.EXTRA_SUBJECT,"NEW CONTANT:"+mContact.getName());
updateEmailIntent.putExtra(Intent.EXTRA_SUBJECT,"NEW CONTACT:"+mContact.getName());
String message=String.format("Name: %s\nSchool: %s\nGraduation year: %s\nAddress: %s\nEmail: %s\n Phone: %s\n",mContact.getName(),mContact.getSchool(),mContact.getGradYear(),mContact.getAddress(),mContact.getEmail(),mContact.getPhoneNumber());
updateEmailIntent.putExtra(Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(updateEmailIntent,"Request update using..."));
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/xml/pref_general.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@



<CheckBoxPreference
<!--<CheckBoxPreference
android:key="rides"
android:title="@string/pref_title_rides"
android:defaultValue="false"
/>
/> -->
<CheckBoxPreference
android:key="admin"
android:title="@string/pref_title_dev"
Expand Down

0 comments on commit 2763e0a

Please # to comment.