今天,我安装 Visual Studio 2017 ,开始创建Android应用程序。 在构建应用程序时,它正在构建正确的构建。但是,当我运行它时,它会给出以下部署问题:
未定义的ComplexType java.lang.Object用作复杂的基础 类型扩展
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/MyButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/Hello" />
</LinearLayout>
更新 现在,从 Android SDK Manager ,我也更新了包。但同样的问题仍然存在。
任何人如果可以解释问题并提供完美的解决方案,请提前致谢。
NOT Duplicate As,