[背景]
我对C#开发一般都很陌生 - 我早年做了一些搞砸,但没有太深入。对于一个项目,一个队友和我正在开发一个使用计步器的移动练习游戏。我们没有重新发明轮子,而是从GitHub找到了一个我们想要使用的开源步骤计数器项目(https://github.com/MikeCodesDotNet/My-StepCounter)。
[问题]
对于我们的项目,我们希望使用该项目中可用的步骤计数器服务。但是,当我尝试将它们构建到DLL时,我会收到以下错误:
BootReceiver.cs(20,7): error CS0246: The type or namespace name 'Android' could not be found (are you missing a using directive or an assembly reference?)
StepService.cs(21,7): error CS0246: The type or namespace name 'Android' could not be found (are you missing a using directive or an assembly reference?)
StepService.cs(25,19): error CS0234: The type or namespace name 'Helpers' does not exist in the namespace 'StepCounter' (are you missing an assembly reference?)
依此类推。它似乎没有识别Android库。理想情况下,我想要做的是将整个项目除了活动作为DLL。我该怎么做?