Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Commits
b0b922fc
Unverified
Commit
b0b922fc
authored
4 months ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
fix: avatars not working as expected
parent
1afbb4d2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/proguard-rules.pro
+49
-2
49 additions, 2 deletions
app/proguard-rules.pro
app/src/main/java/de/kuschku/quasseldroid/util/avatars/MatrixAvatarResponse.kt
+1
-1
1 addition, 1 deletion
...kuschku/quasseldroid/util/avatars/MatrixAvatarResponse.kt
with
50 additions
and
3 deletions
app/proguard-rules.pro
+
49
−
2
View file @
b0b922fc
...
...
@@ -35,6 +35,55 @@
static
**
INSTANCE
;
}
#
Retrofit
does
reflection
on
generic
parameters
.
InnerClasses
is
required
to
use
Signature
and
#
EnclosingMethod
is
required
to
use
InnerClasses
.
-
keepattributes
Signature
,
InnerClasses
,
EnclosingMethod
#
Retrofit
does
reflection
on
method
and
parameter
annotations
.
-
keepattributes
RuntimeVisibleAnnotations
,
RuntimeVisibleParameterAnnotations
#
Keep
annotation
default
values
(
e
.
g
.,
retrofit2
.
http
.
Field
.
encoded
).
-
keepattributes
AnnotationDefault
#
Retain
service
method
parameters
when
optimizing
.
-
keepclassmembers
,
allowshrinking
,
allowobfuscation
interface
*
{
@
retrofit2
.
http
.
*
<
methods
>
;
}
#
Ignore
annotation
used
for
build
tooling
.
-
dontwarn
org
.
codehaus
.
mojo
.
animal_sniffer
.
IgnoreJRERequirement
#
Ignore
JSR
305
annotations
for
embedding
nullability
information
.
-
dontwarn
javax
.
annotation
.
**
#
Guarded
by
a
NoClassDefFoundError
try
/
catch
and
only
used
when
on
the
classpath
.
-
dontwarn
kotlin
.
Unit
#
Top
-
level
functions
that
can
only
be
used
by
Kotlin
.
-
dontwarn
retrofit2
.
KotlinExtensions
-
dontwarn
retrofit2
.
KotlinExtensions
$
*
#
With
R8
full
mode
,
it
sees
no
subtypes
of
Retrofit
interfaces
since
they
are
created
with
a
Proxy
#
and
replaces
all
potential
values
with
null
.
Explicitly
keeping
the
interfaces
prevents
this
.
-
if
interface
*
{
@
retrofit2
.
http
.
*
<
methods
>
;
}
-
keep
,
allowobfuscation
interface
<
1
>
#
Keep
inherited
services
.
-
if
interface
*
{
@
retrofit2
.
http
.
*
<
methods
>
;
}
-
keep
,
allowobfuscation
interface
*
extends
<
1
>
#
With
R8
full
mode
generic
signatures
are
stripped
for
classes
that
are
not
#
kept
.
Suspend
functions
are
wrapped
in
continuations
where
the
type
argument
#
is
used
.
-
keep
,
allowobfuscation
,
allowshrinking
class
kotlin
.
coroutines
.
Continuation
#
R8
full
mode
strips
generic
signatures
from
return
types
if
not
kept
.
-
if
interface
*
{
@
retrofit2
.
http
.
*
public
***
*
(...);
}
-
keep
,
allowoptimization
,
allowshrinking
,
allowobfuscation
class
<
3
>
#
With
R8
full
mode
generic
signatures
are
stripped
for
classes
that
are
not
kept
.
-
keep
,
allowobfuscation
,
allowshrinking
class
retrofit2
.
Response
#
remove
unnecessary
warnings
#
Android
HTTP
Libs
-
dontnote
android
.
net
.
http
.
**
...
...
@@ -43,8 +92,6 @@
-
dontnote
kotlin
.
**
#
Dagger
-
dontwarn
com
.
google
.
errorprone
.
annotations
.
*
#
Retrofit
-
dontwarn
retrofit2
.
**
#
Annotation
used
by
Retrofit
on
Java
8
VMs
-
dontwarn
javax
.
annotation
.
Nullable
-
dontwarn
javax
.
annotation
.
ParametersAreNonnullByDefault
...
...
This diff is collapsed.
Click to expand it.
app/src/main/java/de/kuschku/quasseldroid/util/avatars/MatrixAvatarResponse.kt
+
1
−
1
View file @
b0b922fc
...
...
@@ -25,6 +25,6 @@ import kotlinx.serialization.Serializable
@Serializable
data class
MatrixAvatarResponse
(
@SerialName
(
"avatar_url"
)
val
avatarUrl
:
String
?
val
avatarUrl
:
String
?
=
null
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment