Prepare release 1.7.0

This commit is contained in:
Thomas 2020-04-03 14:48:48 +02:00
parent c5edb94787
commit bb4330899d
2 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ android {
applicationId "app.fedilab.nitterizeme" applicationId "app.fedilab.nitterizeme"
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 29 targetSdkVersion 29
versionCode 10 versionCode 11
versionName "1.6.0" versionName "1.7.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
lintOptions { lintOptions {

View File

@ -37,11 +37,11 @@ class AppInfo {
ApplicationInfo = applicationInfo; ApplicationInfo = applicationInfo;
} }
public String getTitle() { String getTitle() {
return title; return title;
} }
public void setTitle(String title) { void setTitle(String title) {
this.title = title; this.title = title;
} }
} }