Skip to content

Commit

Permalink
Removed evaluation and version increase.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamuno committed Jul 9, 2020
1 parent a10551e commit 583359e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "org.secuso.aktivpause"
minSdkVersion 21
targetSdkVersion 28
versionCode 8
versionName "1.1.1"
versionCode 9
versionName "1.1.2"
vectorDrawables.useSupportLibrary = true
}
lintOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,17 @@ protected void onCreate(Bundle savedInstanceState) {
initResources();
initAnimations();

if(pref.getBoolean("SHOW_EVALUATION", true)) {
showEvaluationDialog();
if(pref.getBoolean("SHOW_EVALUATION", false)) {
//showEvaluationDialog();
}

getSupportLoaderManager().initLoader(0, null, this);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_show_evaluation_dialog, menu);
//MenuInflater inflater = getMenuInflater();
//inflater.inflate(R.menu.menu_show_evaluation_dialog, menu);
return true;
}

Expand Down

0 comments on commit 583359e

Please sign in to comment.