android – The way to localize Libgdx app title for iOS and RoboVM?
[ad_1]
My LibGDX venture runs on Android and iOS. The Android app title is specified within the manifest:
<software
android:label="@string/app_name"
...
So, it takes the app title from the android strings.xml file. How can I obtain similar behaviour with RoboVM and iOS? I want to localize the app title later. Subsequently it ought to take the identical app title from the Android strings.xml file too.
My robovm.properties file:
app.model=1.0
app.id=com.mycom.myapp
app.mainclass=com.mycomp.myapp.IOSLauncher
app.executable=IOSLauncher
app.construct=1
app.title=My App Identify
My robovm.xml file:
<config>
<executableName>${app.executable}</executableName>
...
[ad_2]