.apk文件重命名.man

时间:2015-04-22 09:58:06

标签: android android-studio

我已经开发了一个应用程序与Android工作室和生成标志apk和我放在网上,但如果我在设备上下载apk文件重命名为.apk到.man并在我重命名.man到.apk应用程序无法安装。 error screenshot

3 个答案:

答案 0 :(得分:2)

这是一个阿帕奇方面的问题。 您应该为APK添加类型,如下所示:

打开httpd.conf并添加以下配置。

AddType application/vnd.android.package-archive .apk

重启你的apache恶魔!

答案 1 :(得分:0)

您可能已使用仍安装的调试密钥签署了以前版本的应用程序。请完全卸载它并尝试重新安装所需的下载apk。您可以使用以下命令从命令行卸载它:

$ adb uninstall com.some.app

如果这不起作用,那么您下载的APK可能根本没有签名,但会打印出不同的错误消息。您可以使用以下网址检查APK上的签名:

$ jarsigner -verify -verbose -certs some_app.apk

如果您看到“CN = Android Debug”,则表示使用Android SDK生成的调试密钥对.apk进行了签名 (意思是它是未签名的),否则你会找到CN的东西。 更多细节 http://developer.android.com/guide/publishing/app-signing.html

答案 2 :(得分:0)

这是令人敬畏的尝试。

档案总监(文件夹)

示例:public_html / file

在此根目录中创建.htaccess

并按照代码上传.htaccess。



# Don't Edit this file unless you know what are you doing.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^data/([0-9]+)/(.*).html$ index.php?dir=$1 [QSA,L]
RewriteRule ^data/file/([0-9]+)/(.*).html$ file.php?id=$1 [QSA,L]
RewriteRule ^data/down/([0-9]+)/(.*).html$ down.php?id=$1 [QSA,L]
RewriteRule ^updates/([0-9]+).html$ more_updates.php?page=$1 [QSA,L]
RewriteRule ^sitemap.xml$ sitemap.php [QSA,L]
RewriteRule ^feed$ rss.php [QSA,L]
</IfModule>


# blocheaza accesul la fisierul htaccess

<Files .htaccess>

order allow,deny

deny from all

</Files>

AddType application/octet-stream .csv
AddType application/octet-stream .xls
AddType application/octet-stream .doc
AddType application/octet-stream .avi
AddType application/octet-stream .mpg
AddType application/octet-stream .mov
AddType application/octet-stream .pdf
AddType application/octet-stream .jpg
AddType application/octet-stream .jpeg
AddType application/octet-stream .gif
AddType application/octet-stream .3gp
AddType application/octet-stream .mp4
AddType application/octet-stream .txt
AddType application/octet-stream .jar
AddType application/vnd.android.package-archive .apk

# blocheaza executarea anumitor fisiere

RemoveType .pl .cgi .php .php3 .php4 .php5 .xml .phtml .phtm .html .htm .wml .shtm .shtml .asp

RemoveHandler .pl .cgi .php .php3 .php4 .php5 .xml .phtml .phtm .html .htm .wml .shtm .shtml .asp

#php_flag engine off

Options -Indexes
&#13;
&#13;
&#13;

这里看到一件事

AddType application / vnd.android.package-archive .apk

现在你的问题已经从man解决到了apk

如果您需要进一步的帮助,请在此留言,我会马上回来。