我试图从testflight安装我的iphone应用程序.它安装在几台设备上完美安装,但在一些设备安装后约80%时出现错误"无法下载应用程序,此时无法安装"我能找到原因,为什么会这样?这是截图:

有没有人会帮我解决这个问题?提前致谢.
我正在使用基于webview的应用程序,我在webview中呈现URL.Url具有HTTP身份验证.
当我第一次启动url时,会调用onReceivedHttpAuthRequest()并显示一个对话框,供用户输入身份验证凭据,即auth用户名和密码.
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {
final WebView mView = view;
final HttpAuthHandler mHandler = handler;
final EditText usernameInput = new EditText(mActivity);
usernameInput.setHint("Username");
final EditText passwordInput = new EditText(mActivity);
passwordInput.setHint("Password");
passwordInput.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
LinearLayout ll = new LinearLayout(mActivity);
ll.setOrientation(LinearLayout.VERTICAL);
ll.addView(usernameInput);
ll.addView(passwordInput);
Builder authDialog = new AlertDialog
.Builder(mActivity)
.setTitle("Authentication")
.setView(ll)
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
mHandler.proceed(usernameInput.getText().toString(), passwordInput.getText().toString());
dialog.dismiss();
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void …Run Code Online (Sandbox Code Playgroud) android basic-authentication webview android-webview webviewclient
我有一个图像文件,我使用Base64编码上传到服务器(通过转换为字符串).服务器将该字符串存储在文本文件中,并为我提供了该文本文件的URL.
任何人都可以指导我,如何远程从该文本文件中获取编码的字符串?