資管碩一 段怡安. 2.1 introduction 2.2 building great android apps 2.3 android best practices...

46
Android Market and Business Issues 資資資 資資資

Upload: moris-hancock

Post on 18-Jan-2016

252 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

Android Market and Business

Issues

資管碩一 段怡安

Page 2: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

2

List• 2.1 Introduction• 2.2 Building Great Android Apps• 2.3 Android Best Practices

• 2.3.1 Compatibility• 2.3.2 Supporting Multiple Screens• 2.3.3 Android User Interface Guidelines

• 2.4 Registering at Android Market• 2.5 Setting Up a Google Checkout Merchant Account• 2.6 AndroidManifest.xml file• 2.7 Preparing Your Apps for Publication• 2.8 Uploading Your Apps to Android Market• 2.9 Other Android App Marketplaces

Page 3: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

3

• 2.10 Pricing Your App: Free or Fee• 2.11 Monetizing Apps with In-App Advertising• 2.12 Monetizing Apps: Using In-App Billing to Sell Virtual Good in Your Apps• 2.13 Launching the Market App from Within Your App• 2.14 Managing Your Apps in Android Market• 2.15 Marketing Your App• 2.16 Other Popular App Platforms• 2.17 Android Developer Documentation• 2.18 Android Humor• 2.19 Wrap-Up

Page 4: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

4

2.1 Introduction• discuss the User Interface Guidelines and

Best Practices for designing apps

• learn how to register for Android Market and set up a Google Checkout account for sell apps

• learn how to prepare your apps for publication and how to upload them to Android Market

Page 5: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

5

• discuss considerations for make your apps free or selling for a fee

• provide resources for marketing your apps, mention other popular app platforms to which you want to port Android apps

• point to Android developer documentation for additional information online

Page 6: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

6

2.2 Building Great Android Apps

• How do you create an Android app that people easy to find, download, use and recommend to others. Consider what makes an app more fun, useful, interesting, appealing and enduring.

• Figure 2.1 shows some characteristics of great apps.

Page 7: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

7

Fig. 2.1 | Characteristics of great apps .(Part 1 of 4.)

Page 8: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

8

Fig. 2.1 | Characteristics of great apps. (Part 2 of 4.)

Page 9: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

9

Fig. 2.1 | Characteristics of great apps.(Part 3 of 4.).

Page 10: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

10

Fig. 2.1 | Characteristics of great apps .(Part 4 of 4.)

Page 11: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

11

2.3 Android Best Practices• The Android Developer’s Best Practices

section discusses compatibility, supporting multiple screens, user interface guidelines, and designing for performance, responsiveness and seamlessness.

• the general mobile apps design guidelines available from other online resources (Fig. 2.2)

Page 12: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

12

• Add your text here

Fig. 2.2 | Online resources for mobile app design.

Page 13: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

13

2.3.1 Compatibility• When developing an Android app, you

need to determine which devices and versions of the operating system it will target. The <uses-feature> describe the app’s feature needs, allowing Android Market to filter the app so that only users with compatible devices can view and download it.

Page 14: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

14

• Add your text here

Fig. 2.3 | Feature descriptors for specifying hardware and software requirements in the manifest file .(Part 1 of 4.)

Page 15: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

15

Fig. 2.3 | Feature descriptors for specifying hardware and software requirements in the manifest file .(Part 2 of 4.)

Page 16: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

16

Fig. 2.3 | Feature descriptors for specifying hardware and software requirements in the manifest file .(Part 3 of 4.)

Page 17: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

17

Fig. 2.3 | Feature descriptors for specifying hardware and software requirements in the manifest file .(Part 4 of 4.)

Page 18: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

18

2.3.2 Supporting Multiple Screens

• Android SDK 1.6 and higher support multiple screen sizes (small, normal, large and extra large),

Page 19: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

19

2.3.3 Android User Interface Guidelines

• Icon Design Guidelines

launcher, menu, status bar, tab, dialog and list view icons

→ size, color, positioning, effects

• Widget Design Guidelinessuch as the current weather, stock prices and news

Page 20: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

20

Fig. 2.4 | Popular Android widgets. (Part 1 of 2.)

Page 21: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

21Fig. 2.4 | Popular Android widgets. (Part 2 of 2.)

Page 22: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

22

• Activity and Task Design Guidelinesactivities, the activity stack, Tasks

• Menu Design Guidelinesoptions, context, compose, delete threads, search and settings

•Designing for Accessibility

•Localization

Page 23: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

23

Fig. 2.5 | Points and suggestions when designing the user interface.

Page 24: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

24Fig. 2.5 | Points and suggestions when designing the user interface.

Page 25: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

25

2.4 Registering at Android Market

• To publish your apps on Android Market, you must register for an account

Page 26: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

26

Fig. 2.7 | Violations of the Android Market Content Policy for Developers

Page 27: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

27

2.5 Setting Up a Google Checkout Merchant Account

• To sell your apps on Android Market, you’ll need a Google Checkout merchant account

Page 28: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

28

• available to Android Market developers located in 29 countries at the time of this writing

Fig. 2.8 | Supported locations for Google Checkout merchants.

Page 29: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

29

2.6 AndroidManifest.xml File

Page 30: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

30

2.7 Preparing Your Apps for Publication

• Testing your app on Android devices• Considering including an End User License

Agreement with your app • Adding an icon and label to the app’s manifest• Turning off logging and debugging• Versioning your app (e.g., 1.0, 1.1, 2.0, 2.3, 3.0)• Getting a cryptographic key for digitally signing

your app• Compiling your app• Signing your app

Page 31: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

31

Fig. 2.10 | Android functionality not available on the emulator

Page 32: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

32

2.8 Uploading Your Apps to Android Market

• Uploading Assets– App .apk file– Screenshots– High resolution app icon

• Publishing Options– Content rating– Locations

Page 33: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

33

• Listing Details– Language

– Title

– Description

– Recent changes

– Promo text

– App type

– Category

– Price

Page 34: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

34

• Contact Information– Website

– E-mail

– Phone number

• Consent

Page 35: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

35

2.9 Other Android App Marketplaces

• Add your text here

Page 36: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

36

2.10 Pricing Your App: Free or Fee

Fig. 2.17 | Ways to monetize apps.

Page 37: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

37

2.11 Monetizing Apps with In-App Advertising

• Some developers offer free apps monetized with in-app advertising

often banner ads similar to those you find on websites.

Page 38: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

38

2.12 Monetizing Apps: Using In-App Billing to Sell Virtual Good in Your Apps

Page 39: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

39

2.13 Launching the Market App from Within Your App

• can launch the Market app from within your app, and user can download other apps you’ve published or purchase a related app with functionality beyond that of the previously downloaded version

• can also launch the Market app to enable users to download the latest updates

Page 40: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

40

2.14 Managing Your Apps in Android Market

• The Android Market Developer Console allows you to manage your account and your apps, check users’ star ratings for your apps , track the overall number of installs of each app and the number of active installs

Page 41: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

41

2.15 Marketing Your App

Fig. 2.21 | Popular social media sites.

Page 42: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

42

Fig. 2.26 | Other popular app platforms besides Android. (Part 1 of 2.)

2.16 Other Popular App Platforms

Page 43: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

43

Fig. 2.26 | Other popular app platforms besides Android. (Part 2 of 2.)

Page 44: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

44

2.18 Android Humor

• A funny image that emphasizes one of the key differences between Android and iPhone.

• A humorous video that tries to encourage you to buy an Android phone.

Page 45: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

45

2.19 Wrap-Up

將應用程式上傳至 android market前,必須在模擬器還有 android設備上測試,最後編輯完AndroidManifest.xml文件,透過步驟上傳後就能夠出售應用程式,有提供定價技巧,不過前提是此應用程式必須有符合 android的準則。

Page 46: 資管碩一 段怡安. 2.1 Introduction 2.2 Building Great Android Apps 2.3 Android Best Practices 2.3.1 Compatibility 2.3.2 Supporting Multiple Screens 2.3.3 Android

The end