如何解决更新Android调试应用导致“未安装应用”没有Google Play?

我正在尝试使用户可以从设备更新Ann应用。我们有一台服务器,用户可以在其中下载带有新版本应用程序的apk文件。 这是按下按钮后开始的代码:

Handler handler = new Handler(Looper.getMainLooper());
                Thread thread = new Thread(new Runnable() {
                    @Override
                    public void run() {
                        File folder = new File(getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS).toString());
                        File file = new File(folder.getAbsolutePath(),"localdb.apk");
                        final Uri uri = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) ?
                                FileProvider.getUriForFile(MainActivity.this,BuildConfig.APPLICATION_ID + ".provider",file) :
                                Uri.fromFile(file);

                        if (file.exists())
                            file.delete();

                        //url to get app from server
                        String url = Names.UPDATE_URL;

                        InputStream input = null;
                        OutputStream output = null;
                        HttpURLConnection connection = null;
                        try {
                            URL sUrl = new URL(url);
                            connection = (HttpURLConnection) sUrl.openConnection();
                            connection.connect();

                            // download the file
                            input = connection.getInputStream();
                            output = new FileOutputStream(file);

                            byte data[] = new byte[4096];
                            int count;
                            while ((count = input.read(data)) != -1) {
                                // allow canceling with back button

                                output.write(data,count);
                            }
                        } catch (Exception e) {
                            e.printstacktrace();
                        } finally {
                            try {
                                if (output != null)
                                    output.close();
                                if (input != null)
                                    input.close();
                            } catch (IOException ignored) {
                            }

                            if (connection != null)
                                connection.disconnect();
                        }
                        handler.post(new Runnable() {
                            @Override
                            public void run() {
                                Intent install = new Intent(Intent.ACTION_INSTALL_PACKAGE)
                                        .setData(uri)
                                        .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

                                startActivity(install);
                            }
                        });

                    }
                });
                thread.start();

这就是我的清单:

...<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.QUICKBOOT_POWERON" />
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
...
 <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="ru.mob.myapp.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <Meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>
...

最后是一个xml文件provider_paths:

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path name="external_files" path="."/>
</paths>

所以,一切正常,我下载了新版本的apk,它的名称与已安装的名称相同, 系统要求我安装(更新)我的应用程序,但是当一切都完成后,我收到“没有安装应用程序”消息,没有任何详细信息。 有没有人有解决方案,提示和建议?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)