Reputation: 5532
I've just started with Android Studio and I'm finding it hard to see the name of the apk file I want to put in the Google Play so that lots of people can buy it.
Ler's say I want the name of the app to be "Happy Days" where in the many parts of Android Studio should I put this phrase? I would like the apk to be HappyDays.apk. The package is com.companyname.happydays
Upvotes: 0
Views: 84
Reputation: 6104
You will have to do a few things:
1)change your project name to HappyDays so that the generated apk file would read HappyDays.apk, this doesn't matters much by the way.
2)Add this under the application tag in your manifest file:
android:label="Happy Days" // This is the main thing which displays up as your app name, which everyone sees.
Upvotes: 1