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
58029015
Commit
58029015
authored
Jul 11, 2019
by
Daniel Wolf
Browse files
Added LeakSentry to release builds
parent
e4d94204
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
58029015
...
...
@@ -85,6 +85,9 @@ This work contains third-party content, namely:
-
License:
[
Apache License Version 2.0
](
https://www.apache.org/licenses/LICENSE-2.0
)
-
[
LeakCanary
](
https://github.com/square/leakcanary
)
for finding memory leaks
-
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
)
# Cloning
Feel free to clone this software. However, there are a few things to notice:
...
...
app/build.gradle
View file @
58029015
...
...
@@ -116,6 +116,7 @@ dependencies {
implementation
'com.github.jorgecastilloprz:fabprogresscircle:1.01@aar'
implementation
'com.squareup.leakcanary:leaksentry:2.0-alpha-3'
debugImplementation
'com.squareup.leakcanary:leakcanary-android:2.0-alpha-3'
testImplementation
'junit:junit:4.12'
...
...
app/src/main/java/com/frostnerd/smokescreen/dialog/LicensesDialog.kt
View file @
58029015
...
...
@@ -39,6 +39,7 @@ class LicensesDialog(context: Context):BaseDialog(context, context.getPreference
libraries
[
"Material Design Icons (Apache License Version 2.0)"
]
=
context
.
getString
(
R
.
string
.
license_apache2
)
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
)
setTitle
(
R
.
string
.
dialog_about_licenses
)
val
view
=
layoutInflater
.
inflate
(
R
.
layout
.
dialog_licenses
,
null
,
false
)
...
...
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