Upon creating a class and annotating it like below
@DeepLinkModule
public class AppDeepLinkModule
{
}
when I try to then build the project I get the error:
Error:(12, 82) error: incompatible types: List<Object> cannot be converted to List<DeepLinkEntry>
from the AppDeepLinkModuleLoader class:
public final class AppDeepLinkModuleLoader implements Parser {
public static final List<DeepLinkEntry> REGISTRY = Collections.unmodifiableList(Arrays.asList(
)); <--- this line
@Override
public DeepLinkEntry parseUri(String uri) {
for (DeepLinkEntry entry : REGISTRY) {
if (entry.matches(uri)) {
return entry;
}
}
return null;
}
}
Upon creating a class and annotating it like below
when I try to then build the project I get the error:
Error:(12, 82) error: incompatible types: List<Object> cannot be converted to List<DeepLinkEntry>
from the
AppDeepLinkModuleLoader
class:I'm using the latest version: