Skip to content

Commit 6f09d41

Browse files
committed
Hide update ui
1 parent 27c9db9 commit 6f09d41

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ android {
1717
minSdkVersion 21
1818
//noinspection OldTargetApi
1919
targetSdkVersion 25
20-
versionCode 10
21-
versionName "2.2.4"
20+
versionCode 11
21+
versionName "2.2.5"
2222
project.ext.set("archivesBaseName", "EdXposedInstaller_v" + versionName)
2323

2424
buildConfigField "String", "APP_VERSION", APP_VERSION

app/src/main/java/de/robv/android/xposed/installer/installation/StatusInstallerFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static void setError(boolean connectionFailed, boolean noSdks) {
8787
public static void setUpdate(final String link, final String changelog) {
8888
mUpdateLink = link;
8989

90-
mUpdateView.setVisibility(View.VISIBLE);
90+
// mUpdateView.setVisibility(View.VISIBLE);
9191
mUpdateButton.setVisibility(View.VISIBLE);
9292
mUpdateButton.setOnClickListener(new View.OnClickListener() {
9393
@Override

app/src/main/java/de/robv/android/xposed/installer/receivers/BootReceiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public void onReceive(final Context context, Intent intent) {
2626
public void run() {
2727
if (!isOnline(context)) return;
2828

29-
new CheckUpdates().execute();
29+
// new CheckUpdates().execute();
3030
}
3131
}, 60 * 60 * 1000 /*60 min*/);
3232
}

gradle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@
1515
#Thu Jul 21 11:19:13 BST 2016
1616
android.enableJetifier=true
1717
android.useAndroidX=true
18-
systemProp.http.proxyHost=192.168.100.99
19-
systemProp.http.proxyPort=808

0 commit comments

Comments
 (0)