mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
bump version
fix webpage -> website Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
91f624524d
commit
601138099a
2 changed files with 3 additions and 3 deletions
|
@ -182,7 +182,7 @@ dependencies {
|
|||
// dependencies for app building
|
||||
implementation 'com.android.support:multidex:1.0.2'
|
||||
// implementation project('nextcloud-android-library')
|
||||
implementation 'com.github.nextcloud:android-library:1.0.36'
|
||||
implementation 'com.github.nextcloud:android-library:1.0.37'
|
||||
versionDevImplementation 'com.github.nextcloud:android-library:master-SNAPSHOT' // use always latest master
|
||||
implementation "com.android.support:support-v4:${supportLibraryVersion}"
|
||||
implementation "com.android.support:design:${supportLibraryVersion}"
|
||||
|
|
|
@ -276,7 +276,7 @@ public class UserInfoActivity extends FileActivity {
|
|||
}
|
||||
|
||||
if (userInfo.getPhone() == null && userInfo.getEmail() == null && userInfo.getAddress() == null
|
||||
&& userInfo.getTwitter() == null & userInfo.getWebpage() == null) {
|
||||
&& userInfo.getTwitter() == null & userInfo.getWebsite() == null) {
|
||||
|
||||
setErrorMessageForMultiList(getString(R.string.userinfo_no_info_headline),
|
||||
getString(R.string.userinfo_no_info_text), R.drawable.ic_user);
|
||||
|
@ -296,7 +296,7 @@ public class UserInfoActivity extends FileActivity {
|
|||
addToListIfNeeded(result, R.drawable.ic_phone, userInfo.getPhone(), R.string.user_info_phone);
|
||||
addToListIfNeeded(result, R.drawable.ic_email, userInfo.getEmail(), R.string.user_info_email);
|
||||
addToListIfNeeded(result, R.drawable.ic_map_marker, userInfo.getAddress(), R.string.user_info_address);
|
||||
addToListIfNeeded(result, R.drawable.ic_web, DisplayUtils.beautifyURL(userInfo.getWebpage()),
|
||||
addToListIfNeeded(result, R.drawable.ic_web, DisplayUtils.beautifyURL(userInfo.getWebsite()),
|
||||
R.string.user_info_website);
|
||||
addToListIfNeeded(result, R.drawable.ic_twitter, DisplayUtils.beautifyTwitterHandle(userInfo.getTwitter()),
|
||||
R.string.user_info_twitter);
|
||||
|
|
Loading…
Reference in a new issue