Skip to content

Commit 085bdf8

Browse files
committed
Temporarily disable the binary updater for security reasons
1 parent 3a762ed commit 085bdf8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

res/layout/fragment_info.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
</LinearLayout>
5959
<TextView style="@style/InfoInfo"
6060
android:id="@+id/su_warning"
61-
android:text="@string/info_check_updates" />
61+
android:text="@string/info_check_updates"
62+
android:visibility="gone" />
6263
<CheckBox
6364
android:id="@+id/outdated_notification"
6465
android:layout_width="match_parent"

src/com/noshufou/android/su/InfoFragment.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ public void onClick(View v) {
140140
eliteIntent.setData(Uri.parse("market://details?id=com.noshufou.android.su.elite"));
141141
startActivity(eliteIntent);
142142
break;
143-
case R.id.binary_updater:
144-
final Intent updaterIntent = new Intent(getSherlockActivity(), UpdaterActivity.class);
145-
startActivity(updaterIntent);
146-
break;
143+
// case R.id.binary_updater:
144+
// final Intent updaterIntent = new Intent(getSherlockActivity(), UpdaterActivity.class);
145+
// startActivity(updaterIntent);
146+
// break;
147147
case R.id.temp_unroot:
148148
new ToggleSuOption(Preferences.TEMP_UNROOT).execute();
149149
break;

0 commit comments

Comments
 (0)