构建与Android工作室签名APK文件

构建与Android工作室签名APK文件

本文介绍了构建与Android工作室签名APK文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发的Andr​​oid开发工具的一个Android应用程序。现在,我尝试了新的Andr​​oid工作室,一切工作正常,如果与PC连接智能手机,然后直接运行在Android Studio中的程序。但现在我想测试与其他smarthpones的PROGRAMM没有他们连接到我的电脑。

I'm developing an android app with the Android Developer Tool.Now i tried the new Android Studio, everything works fine if connect my smartphone with the pc and directly run the program in the Android Studio.But now i want to test the programm with other smarthpones without connecting them to my pc.

在ADT创建项目名称/ BIN下的.apk文件每次你编译程序。我怎么看它的那一刻了Android Studio不这样做。

The ADT creates the .apk file under "projectname/bin" everytime you compile the program.How i see it at the moment the Android Studio doesn't do that.

所以我的问题是有可能创造与Android工作室?

So my question is it possible to create an unsigned .apk file with Android Studio?

感谢您的帮助。

推荐答案

如果您已经导入Eclipse中的项目,应当以相同的顺序。转到项目 - 显示在资源管理器。在那里,你会发现bin文件夹在您的apk文件位于

If you have imported the project from eclipse, it should be in the same order. Go to Project - Show in Explorer. There you should find the bin folder where your apk file is located in.

如果您生成与Android工作室,在项目文件夹中的apk文件项目项目名/项目名/建设/ APK /...

If you generated the Project with Android Studio, the apk file in the project folder in ProjectName/ProjectName/build/apk/...

如果你的IntelliJ进口,该位置将是项目名输入/输出/生产/...

If you imported from IntelliJ, the location would be ProjectName/out/production/...

这篇关于构建与Android工作室签名APK文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 12:06