Hi there, this might seem like a bit of a weird question, but hang in there. I am using cargo-apk
(For android) and after looking at it, I can add the following to use the internal injected ffi
and glue:
extern crate cargo_apk_injected_glue;
because of the name of the crate that is specified here, however vscode (Understandably) gets mad at me. I have set the target to check to the appropriate toolchain and target triple, but this is pretty specific to the compilation process of cargo-apk
, and I'm not sure if I can fix this in a config file. Anyway, I was wondering if there was any way to #![]
my way out of this. Just to ignore the errors in this one file, which I know will work, its just that the cargo check
that vscode runs doesn't.
This is mainly because of the fact that the entire checking process (and compile process) just stops when a mod
, or extern crate
isn't found, therefore completely nulling the useful things that the vscode rust extension can do with the rust language server.