Formatting for auto-generation descriptor #139
Replies: 4 comments
-
Can you elaborate some more here? |
Beta Was this translation helpful? Give feedback.
-
It could be something like that. <?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/33.1">
<id>com.product.id</id>
<filename>Product Name</filename>
<name>
<text xml:lang="en">Product Name</text>
<text xml:lang="zh_Hans">Product Name</text>
<text xml:lang="zh_Hant">Product Name</text>
</name>
<versionNumber>1.2.3</versionNumber>
<initialWindow>
<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
<visible>true</visible>
<aspectRatio>portrait</aspectRatio>
<autoOrients>true</autoOrients>
</initialWindow>
<icon>
<image29x29>icons/29.png</image29x29>
<image36x36>icons/36.png</image36x36>
<image40x40>icons/40.png</image40x40>
</icon>
<android>
<manifestAdditions><![CDATA[
<manifest android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30" android:hardwareAccelerated="true"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="com.android.vending.BILLING" />
<application android:enabled="true">
<meta-data android:name="android.max_aspect" android:value="2.5" />
<activity android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false"/>
<provider
android:name="com.distriqt.extension.pushnotifications.content.FileProvider"
android:authorities="air.com.mildright.AncientEmpire.pushnotificationsfileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/distriqt_pushnotifications_paths" />
</provider>
</application>
</manifest>
]]></manifestAdditions>
</android>
<iPhone>
<InfoAdditions><![CDATA[
<key>UIDeviceFamily</key>
<array>
<string>1</string>
<string>2</string>
</array>
<key>MinimumOSVersion</key>
<string>9.0</string>
]]></InfoAdditions>
<Entitlements><![CDATA[
<key>aps-environment</key>
<string>production</string>
<key>get-task-allow</key>
<false/>
]]></Entitlements>
<requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>
<supportedLanguages>en de es</supportedLanguages>
<extensions>
<extensionID>androidx.appcompat</extensionID>
<extensionID>androidx.browser</extensionID>
<extensionID>androidx.cardview</extensionID>
</extensions>
</application> |
Beta Was this translation helpful? Give feedback.
-
Are you just meaning insert some whitespace or is the order of importance here? I believe we are just currently using the standard I suppose our long term goal has always been to potentially remove the requirement to use this file at all, so appearance hasn't been high on the list |
Beta Was this translation helpful? Give feedback.
-
From my point of view its more about whitespaces - tabs and empty lines. Some stuff like |
Beta Was this translation helpful? Give feedback.
-
It would be nice to have some formatting for auto-generated descriptor.
It would be easy to check descriptor manually with new empty lines between top level tags (
id
,versionNumber
,filename
,name
,initialWindow
,icon
,android
and etc.) at least.Beta Was this translation helpful? Give feedback.
All reactions