Previously, the output of aapt would include the line
application-label: 'FooApp'
The previously version of the externallyhosted.py script selected the application under the assumption that the above line would exist. The latest version of aapt only includes localized versions of application label e.g.:
In the case that the original 'application-label:' attribute doesn't exist, the script will now grab the label from the "application:" line which follows the form:
Previously, the output of aapt would include the line
application-label: 'FooApp'
The previously version of the externallyhosted.py script selected the application under the assumption that the above line would exist. The latest version of aapt only includes localized versions of application label e.g.:
application-label-af: 'FooApp' application-label-am: 'FooApp' ...
In the case that the original 'application-label:' attribute doesn't exist, the script will now grab the label from the "application:" line which follows the form:
application: label='FooApp' icon='res/mipmap-mdpi-v4/fooapp.png'
Thanks,
Matt