Please ensure Javascript is enabled for purposes of website accessibility Jump to content

kennethcowen2010

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by kennethcowen2010

  1. Exact same issue. I don't have an apple, and the android app won't let you re-do the updates, but it seems like someone had it work by using the iPhone plugin. I REALLY WANT TO KNOW WHAT LINE 6 IS GOING TO DO ABOUT THIS!!! This all started because they had a relay that would catch fire, and THEY BROKE SOMETHING ELSE TRYING TO FIX THEIR BUGGY FIRMWARE!!!
  2. Same problem, with two separate transmitters G10 and the G10ii Does yours even show the charging icon in the scribble strip (top right of screen?)
  3. similar situation, I just upgraded to 2.02 and now my relay g10 is not working anymore. I'd downgrade them both again, but i had to use 2.02 on the spider v. I can't see the relay g10 in line6 updater, and i cant even see the g10 battery logo on the spider. When i plug it in, i get four red blinks, steady green blinks, and solid green, but i don't see anything to indicate the spider even knows its there!
  4. Just making "a point of never hitting it" should never be an answer. This is programmer 101: Program hardware/system buttons FIRST! It is embarrassing to have these 2 problems at the same time. A. Back button exits the app B. Exiting the app = AUTODISCONNECT FROM AMP ! EDIT: If you can't assign a back button, the following script would take a programmer 5 minutes to implement and would prompt users with a dialogue box "are you sure you want to close...." : @Override public void onBackPressed() { new AlertDialog.Builder(this) .setIcon(android.R.drawable.ic_dialog_alert) .setTitle("Closing Activity") .setMessage("Are you sure you want to close this activity?") .setPositiveButton("Yes", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { finish(); } }) .setNegativeButton("No", null) .show(); }
×
×
  • Create New...