Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
change versionnumver
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonbeckas committed Nov 23, 2019
1 parent 13d55c7 commit 065aa6f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 21
targetSdkVersion 28
versionCode 2
versionName "1.0"
versionName "1.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void onSucces(String s, URL url) {
Updater.this.url = url;
AlertDialog.Builder build = new AlertDialog.Builder(Updater.this.mainActivity);
build.setTitle("Update verfügbar");
build.setMessage("Willst du auf eine neuere Table Version updaten?");
build.setMessage("Willst du auf eine neuere Tabler Version updaten?");
build.setPositiveButton("Ja",Updater.this::positive);
build.setNegativeButton("Nein",Updater.this::negative);
AlertDialog message = build.create();
Expand Down Expand Up @@ -106,7 +106,7 @@ private void doDownload() {
String destination = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/";
Uri uri = Uri.parse("file://"+destination+"/tabler.apk");
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url.toString()));
request.setDescription("download update");
request.setDescription("Update wird heruntergeladen");
request.setTitle("Tabler");
//set destination
request.setDestinationUri(uri);
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name">Tabler</string>
<string name="vern">1.1.0</string>
<string name="vern">1.2.0</string>
</resources>

0 comments on commit 065aa6f

Please sign in to comment.