帮助需要在市场上发布Android应用程序

时间:2011-09-06 06:20:20

标签: android-maps

我在android中使用地图视图创建了一个应用程序,我想在市场上发布它。

首先,如何从eclipse导出最终APK,以及第二个Google地图API密钥以便发布

请帮助我。

2 个答案:

答案 0 :(得分:2)

用于创建apk文件。

Right click on your project->Export

Select the Android->Export Android Application

then next

In this wizard by default you get your project name which you have selected then next

in this keystore you have to create your keystore as first time then select Create new keystore and set the path like this way or you can browse it by click on browse button
path e.g. D:\app\myapp\my_release.keystore

set the password here with confirm password then next.

Set the Alias name here
Set the password and confirm password (this is different from the previous one but)
Set the year and other details
then click next
here set the path for your apk file
for e.g. D:\app\myapp\my_app.apk

现在您的apk文件已创建,但您已使用此新创建的移动设备密钥库设置了地图api密钥。

使用此密钥库以这种方式获取您的地图密钥

c:\java\...\bin Keytool –list -alias youraliasname –keystore D:\app\myapp\my_release.keystore -storepass yourpassword -keypass youraliaspassword then enter

现在注册并使用此证书指纹从Google网站获取地图密钥并更改xml文件中的api密钥(请注意,此api密钥仅适用于您为模拟器生成的移动设备,您还必须保存为备份)。

现在再次重新生成apk文件,如上所述。但这次你必须选择现有的密钥库

答案 1 :(得分:1)

发布:右键单击项目,转到android工具,选择读取“export signed package”之类的选项。对于密钥,请注册一个。它真的归结为那个。但是完整的手册/帮助是在线的,并且很容易找到。

我想知道你被困在哪里,但只是阅读这些主题:

Signing Your Applications
版本化您的应用程序
准备发布 在Android电子市场上发布

(我已将第一个链接起来,其余的都在第一个链接的左侧)。

对于谷歌地图API,您可以使用this链接推测