Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/183.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 调试过程中的应用程序错误_C#_Android_Xamarin Studio - Fatal编程技术网

C# 调试过程中的应用程序错误

C# 调试过程中的应用程序错误,c#,android,xamarin-studio,C#,Android,Xamarin Studio,我是Xamarian的新手。调试弹出窗口时出现我在下面提到的错误。我无法在应用程序属性中看到任何与API级别相关的内容。如何修复此错误 Target device (emulator-5554) has an API level of 10, but this application has a minimum API level of 19 set. minimum API level can be changed in the project properties on the A

我是Xamarian的新手。调试弹出窗口时出现我在下面提到的错误。我无法在应用程序属性中看到任何与API级别相关的内容。如何修复此错误

 Target device (emulator-5554) has an API level of 10, but this application has a minimum

 API level of 19 set.

 minimum API level can be changed in the project properties on the Android Manifest tab.

您必须使用API级别19启动Emulator,或者在AndroidManifext.xml中设置API级别10。例如:

    <uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="19" />