开发者

Android market "Whats new in version xyz" - information

开发者 https://www.devze.com 2023-01-21 20:30 出处:网络
While browsing through various apps in the market, I noticed that there\'s a \"New in version xyz: ... \" text, just above the number of downloads and comments. Did I miss something, or is there a ded

While browsing through various apps in the market, I noticed that there's a "New in version xyz: ... " text, just above the number of downloads and comments. Did I miss something, or is there a dedicated field to provide this kind of information while uploading a new version of your app in the market instea开发者_如何学Pythond of just changing your application description?

Thanks

Edit: Here a picture to clarify what I'm talking about:

Android market "Whats new in version xyz" - information


That's the developer overstuffing the versionName name field in the manifest:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.example.foomatic"
      android:versionCode="2"
      android:versionName="1.02 Fixed inaccurate frobnostication"
>
...etc...

Not great practice, but it doesn't chew up any of the limited number of characters available in the description.


Market implementation has been changed and now there is a field for "what's new" so this practice of "stuffing the version" isn't required any more.

0

精彩评论

暂无评论...
验证码 换一张
取 消