我是“Android 编码”场景的新手,我已经编写了我的第一个应用程序,现在我想实现一个自动更新功能。
现在我找到了这个库: https ://github.com/RaghavSood/AppaholicsUpdateChecker
现在我有了这个 onCreate 函数:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
UpdateChecker checker = new UpdateChecker(this, true);
checker.checkForUpdateByVersionCode("http://app.XXX.in/version.txt");
checker.isUpdateAvailable();
checker.downloadAndInstall("http://app.XXX.in/apk/tGlApp.apk");
}
如果我现在开始我的应用程序,则会出现一个 ToastText,表明我没有 Internet 连接,更新失败,但我有 Internet 连接。清单文件中也允许访问 Internet。
上面的代码错了吗?
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tglapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<supports-screens
android:largeScreens="true"
android:normalScreens="false"
android:smallScreens="false"
android:xlargeScreens="true" />
<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.tglapp.MainActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.MAIN2" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.tglapp.MainActivity2"
android:configChanges="orientation"
android:label="@string/title_activity_main_activity2"
android:screenOrientation="landscape" >
</activity>
<activity
android:name="com.example.tglapp.MainActivity3"
android:label="@string/title_activity_main_activity3" >
</activity>
</application>
</manifest>
有了这个更新脚本,我需要允许“android.permission.INTERNET”的其他东西?