Lines Matching full:apks
1 page.title=Creating Multiple APKs for Different GL Textures
2 parent.title=Maintaining Multiple APKs
6 previous.title=Creating Multiple APKs for Different Screen Sizes
8 next.title=Creating Multiple APKs with 2+ Dimensions
25 <li><a href="#Confirm">Confirm You Need Multiple APKs</a></li>
36 <li><a href="http://developer.android.com/google/play/publishing/multiple-apks.html">Multiple APK
43 <p>When developing your Android application to take advantage of multiple APKs on Google Play, it?s important to adopt some good practices from the get-go, and prevent unnecessary headaches further into the development process. This lesson shows you how to create multiple APKs of your app, each supporting a different subset of OpenGL texture formats. You will also gain some tools necessary to make maintaining a multiple APK codebase as painless as possible.</p>
46 <h2 id="Confirm">Confirm You Need Multiple APKs</h2>
52 href="{@docRoot}google/play/publishing/multiple-apks.html#ApiLevelOptions">Using Single APK
55 href="{@docRoot}google/play/publishing/multiple-apks.html#TextureOptions">detect supported texture
71 material in the resources linked, and determined that multiple APKs are the right path for your
80 particular texture formats. Note that it?s generally a good idea for one of your APKs to support
125 colors, menu icons and layout that isn?t going to change across APKs, and put
140 need to share the package name with the library. If you were to have 3 APKs following the scheme
144 alexlucas:~/code/multi-apks-root$ ls
161 <p>When a user downloads an application which uses multiple APKs through Google Play, the correct
166 <li>Of the eligible APKs, highest version number wins</li>
176 messages. The common case is going to be that if you?re using multiple APKs specifically to target
183 device supporting many APKs, but the solution is the same: Version codes.</p>
185 <p>By way of example, take a few devices, and see how many of the APKs defined earlier fit each
213 <p> In order to keep all your APKs on separate "tracks," it?s important to have a good version code
215 the example set of APKs is only dealing with one of 3 possible dimensions, it would be sufficient to
250 specifically relevant to multiple APKs, and in no way represent a complete checklist for all
254 <li>All APKs must have the same package name</li>
255 <li>All APKs must be signed with the same certificate</li>
304 <p>Once you?ve completed the pre-launch checklist, upload your APKs to Google Play. It may take a bit for the application to show up when browsing Google Play, but when it does, perform one last check. Download the application onto any test devices you may have to make sure that the APKs are targeting the intended devices. Congratulations, you?re done!</p>