I declared a retrofit call parameter as List<Li...
# announcements
m
I declared a retrofit call parameter as List<List<String>> but it doesn’t work because
java.lang.IllegalArgumentException: Parameter type must not include a type variable or wildcard: java.util.List<? extends java.util.List<java.lang.String>>
. Why does it turn into
? extends ...
and what’s the best solution here?