How to set app name for Android and iOS
Solved
Mobile and Embedded
-
wrote on 2 Jul 2019, 11:21 last edited by
Hi!
How to set app name for Android and iOS? -
wrote on 2 Jul 2019, 11:31 last edited by
See QCoreApplication Class.
Example:QCoreApplication::setApplicationName("World's Best Application")
So it should let your app's name "Worl's Best Application".
Good Work! -
wrote on 2 Jul 2019, 12:09 last edited by
Do you need to write this in the constructor of the main class?
-
@Mikeeeeee
You can call it anywhere but
in main.cpp might be a good spot. -
wrote on 2 Jul 2019, 12:33 last edited by
Added in main.cpp, but the name of the app has not changed.
-
@Mikeeeeee
inside your *pro file,TARGET = AppName
-
wrote on 2 Jul 2019, 12:45 last edited by
For Android the manifest changes, for ios the pList .
1/7