Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Emil van den Berg
Nebulo
Commits
591bbfe8
Commit
591bbfe8
authored
Sep 16, 2020
by
Emil van den Berg
Browse files
version string on settings screen
parent
9f662d2b
Pipeline
#7483
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/com/frostnerd/smokescreen/appauthdemo/SettingsActivity.java
View file @
591bbfe8
...
...
@@ -265,7 +265,7 @@ public class SettingsActivity extends AppCompatActivity {
((
ConstraintLayout
)
findViewById
(
R
.
id
.
infoOption
)).
setVisibility
(
View
.
VISIBLE
);
((
TextView
)
findViewById
(
R
.
id
.
greyedSettingAbove
)).
setVisibility
(
View
.
VISIBLE
);
((
TextView
)
findViewById
(
R
.
id
.
greyedSettingAbove
)).
setText
(
"Open-sourcelicenties"
);
((
TextView
)
findViewById
(
R
.
id
.
infoTextVersion
)).
setText
(
BuildConfig
.
VERSION_NAME
+
(
BuildConfig
.
SERVER
.
isEmpty
()?
'd'
:
's'
)
);
((
TextView
)
findViewById
(
R
.
id
.
infoTextVersion
)).
setText
(
BuildConfig
.
VERSION_NAME
+
BuildConfig
.
VERSION_CHAR
);
((
TextView
)
findViewById
(
R
.
id
.
infoTextAccount
)).
setText
(
ExtensionsKt
.
getPreferences
(
SettingsActivity
.
this
).
getEmail
());
((
TextView
)
findViewById
(
R
.
id
.
infoTextDevice
)).
setText
(
ExtensionsKt
.
getPreferences
(
SettingsActivity
.
this
).
getToken
());
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment