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"
minSdkVersion 15
targetSdkVersion 29
versionCode 10
versionName "1.6.0"
versionCode 11
versionName "1.7.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {

View File

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