- Learning Android Game Development
- Nikhil Malankar
- 289字
- 2021-07-09 20:41:18
Package names
The first thing that you will come across is something called a Package Name. It's quite easy to understand actually. A package name is simply like a reverse URL. Think of a package name as your app's domain name-just like a website, only in reverse. For instance, you can think of www.google.com as a website's domain name; in exactly the same way, the naming convention of an Android app is the reverse of a website. So, you can name your app something like com.google.www. There is no strict rule that says that your package name must start from com, but it is the most commonly accepted convention. You can also name your package name randomly using your own set of conventions, such as abc.xyz.lmn, mygame.mycompany.myname, and so on. Also, it is extremely important to note that package names must be unique and should not match the package name of any other existing app on the Google Play Store.
It is very important to choose a unique package name since the URL gets indexed by Google and is crucial for your game or app to be noticed on the Google Play Store. So, ensure that you use a unique package name for your game. Also, another interesting fact is that you can predict your app's URL even before it goes live if you have finalized it on your package name. For this reason, you cannot use the same package name of another app since it's already live on Google Play Store. Your app will be live according to the following URL convention:
https://play.google.com/store/apps/details?id=*package_name_here*
So, if your package name is abc.xyz.lmn, then your app's URL will be as follows:
https://play.google.com/store/apps/details?id=abc.xyz.lmn
- Deep Learning with PyTorch
- Manage Partitions with GParted How-to
- Learning Stencyl 3.x Game Development Beginner's Guide
- 分布式微服務(wù)架構(gòu):原理與實戰(zhàn)
- 微服務(wù)分布式架構(gòu)基礎(chǔ)與實戰(zhàn):基于Spring Boot + Spring Cloud
- VMware Workstation:No Experience Necessary
- Hands-On Artificial Intelligence for Banking
- Blender for Video Production Quick Start Guide
- UML精粹:標(biāo)準(zhǔn)對象建模語言簡明指南(第3版)
- Deep Learning with Keras
- The Machine Learning Workshop
- MicroPython Cookbook
- 現(xiàn)代多媒體技術(shù)及應(yīng)用
- Learning Microsoft Cognitive Services
- 嵌入式系統(tǒng)原理:基于Arm Cortex-M微控制器體系