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
PublicAndroidApps
Nebulo
Commits
30869c25
Commit
30869c25
authored
Jul 22, 2019
by
Daniel Wolf
Browse files
Added credits for gson and okhttp
parent
ec096e2a
Changes
2
Show whitespace changes
Inline
Side-by-side
README.md
View file @
30869c25
...
...
@@ -87,7 +87,10 @@ This work contains third-party content, namely:
-
License:
[
Apache License Version 2.0
](
https://www.apache.org/licenses/LICENSE-2.0
)
-
[
LeakSentry
](
https://github.com/square/leakcanary/tree/master/leakcanary-leaksentry
)
for finding memory leaks
-
License:
[
Apache License Version 2.0
](
https://www.apache.org/licenses/LICENSE-2.0
)
-
[
Gson
](
https://github.com/google/gson
)
-
License:
[
Apache License Version 2.0
](
https://www.apache.org/licenses/LICENSE-2.0
)
-
[
OkHttp
](
https://github.com/square/okhttp
)
-
License:
[
Apache License Version 2.0
](
https://www.apache.org/licenses/LICENSE-2.0
)
# Cloning
Feel free to clone this software. However, there are a few things to notice:
...
...
app/src/main/java/com/frostnerd/smokescreen/dialog/LicensesDialog.kt
View file @
30869c25
...
...
@@ -39,6 +39,8 @@ class LicensesDialog(context: Context):BaseDialog(context, context.getPreference
libraries
[
"FABProgressCircle (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
libraries
[
"LeakCanary (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
libraries
[
"LeakSentry (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
libraries
[
"OkHttp (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
libraries
[
"Gson (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
setTitle
(
R
.
string
.
dialog_about_licenses
)
val
view
=
layoutInflater
.
inflate
(
R
.
layout
.
dialog_licenses
,
null
,
false
)
...
...
Write
Preview
Markdown
is supported
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