我需要你的帮助解决我的问题。 我创建了一个在虚拟设备上完美运行的Android应用程序
但是当我尝试在我的三星Galaxy s2上运行它时它就停止工作而没有在LogCat上显示任何错误
N.B:这个应用需要互联网才能工作
这是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>
我刚发现相关错误,即=&gt;
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中我激活了对互联网的访问
答案 0 :(得分:1)
只需添加:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
到你的清单