gpt4 book ai didi

java - Android 应用程序可以在虚拟设备上运行,但不能在真实设备上运行

转载 作者:行者123 更新时间:2023-12-01 13:34:51 27 4
gpt4 key购买 nike

我需要你的帮助来解决我的问题。我创建了一个在虚拟设备上完美运行的 Android 应用程序

但是当我尝试在我的 Samsung Galaxy s2 上运行它时,它只是停止工作,并且 LogCat 上没有显示任何错误

注意:此应用程序需要互联网才能运行

这是 AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.rats"
android:versionCode="1"
android:versionName="1.0" >

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

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.rats.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.rats.LineActivity"
android:label="@string/title_activity_line" >
</activity>
</application>

</manifest>
<小时/>

我刚刚发现了相关错误,即=>

01-26 20:12:25.285: E/AccuWeather - UALib(8131): IOException when executing request. Do you have permission to access the internet? (device-api.urbanairship.com)

但我不明白为什么,在我的manifest.xml中我激活了对互联网的访问

最佳答案

只需添加:

  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

到您的 list

关于java - Android 应用程序可以在虚拟设备上运行,但不能在真实设备上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21368324/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com