• Home
  • Raw
  • Download

Lines Matching refs:to

32 <p>Multiple APK support is a feature of Google Play that allows you to publish multiple APKs
34 to target specific device configurations. Each APK can target a specific set of GL
37 <p>This class shows you how to write your multiple APK application using any one of these
38 configuration variables. Each lesson covers basics about how to organize your codebase and target
39 the right devices, as well as the smart way to avoid pitfalls such as unnecessary redundancy across
40 your codebase, and making mistakes in your manifest that could render an APK invisible to all
41 devices on Google Play. By going through any of these lessons, you'll know how to develop
42 multiple APKs the smart way, make sure they're targeting the devices you want them to,
43 and know how to catch mistakes <em>before</em> your app goes live.</p>
51 <dd>Learn how to target different versions of the Android platform using multiple APKs. Also
52 learn how to organize your codebase, what to do with your manifest, and how to investigate your APK
56 <dd>Learn how to target Android devices by screen size using multiple APKs. Also learn how to
57 organize your codebase, what to do with your manifest, and how to investigate your APK configuration
61 <dd>Learn how to target Android devices based on their support for GL texture. Also learn
62 how to organize your codebase, what to do with your manifest, and how to investigate your APK
66 <dd>Learn how to target different Android devices based on more than one configuration
68 of API level and screen size. Also learn how to organize your codebase, what to do with your
69 manifest, and how to investigate your APK configuration using the <code>aapt</code> tool before