[ 
https://issues.apache.org/jira/browse/CB-13685?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16595758#comment-16595758
 ] 

ASF GitHub Bot commented on CB-13685:
-------------------------------------

codecov-io edited a comment on issue #26: CB-13685 android: Update ConfigParser 
for Adaptive Icons
URL: https://github.com/apache/cordova-common/pull/26#issuecomment-395718216
 
 
   # 
[Codecov](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=h1) 
Report
   > Merging 
[#26](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=desc) into 
[master](https://codecov.io/gh/apache/cordova-common/commit/d2dca1c70ddc1cb487ceb9e4eee086262ccc30f1?src=pr&el=desc)
 will **increase** coverage by `0.73%`.
   > The diff coverage is `100%`.
   
   [![Impacted file tree 
graph](https://codecov.io/gh/apache/cordova-common/pull/26/graphs/tree.svg?width=650&token=jsbcYRuqT5&height=150&src=pr)](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=tree)
   
   ```diff
   @@            Coverage Diff             @@
   ##           master      #26      +/-   ##
   ==========================================
   + Coverage    85.9%   86.63%   +0.73%     
   ==========================================
     Files          19       19              
     Lines        1738     1811      +73     
     Branches      361      387      +26     
   ==========================================
   + Hits         1493     1569      +76     
   + Misses        245      242       -3
   ```
   
   
   | [Impacted 
Files](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=tree) | 
Coverage Δ | |
   |---|---|---|
   | 
[src/ConfigParser/ConfigParser.js](https://codecov.io/gh/apache/cordova-common/pull/26/diff?src=pr&el=tree#diff-c3JjL0NvbmZpZ1BhcnNlci9Db25maWdQYXJzZXIuanM=)
 | `76.89% <100%> (+0.16%)` | :arrow_up: |
   | 
[src/util/xml-helpers.js](https://codecov.io/gh/apache/cordova-common/pull/26/diff?src=pr&el=tree#diff-c3JjL3V0aWwveG1sLWhlbHBlcnMuanM=)
 | `95.67% <0%> (+0.72%)` | :arrow_up: |
   | 
[src/PluginInfo/PluginInfo.js](https://codecov.io/gh/apache/cordova-common/pull/26/diff?src=pr&el=tree#diff-c3JjL1BsdWdpbkluZm8vUGx1Z2luSW5mby5qcw==)
 | `83.41% <0%> (+2.16%)` | :arrow_up: |
   | 
[src/CordovaError/CordovaError.js](https://codecov.io/gh/apache/cordova-common/pull/26/diff?src=pr&el=tree#diff-c3JjL0NvcmRvdmFFcnJvci9Db3Jkb3ZhRXJyb3IuanM=)
 | `65.51% <0%> (+20.68%)` | :arrow_up: |
   
   ------
   
   [Continue to review full report at 
Codecov](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=continue).
   > **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta)
   > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`
   > Powered by 
[Codecov](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=footer).
 Last update 
[d2dca1c...648356d](https://codecov.io/gh/apache/cordova-common/pull/26?src=pr&el=lastupdated).
 Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Android Adaptive Icons
> ----------------------
>
>                 Key: CB-13685
>                 URL: https://issues.apache.org/jira/browse/CB-13685
>             Project: Apache Cordova
>          Issue Type: Improvement
>          Components: cordova-android
>         Environment: All
>            Reporter: Josef Brandl
>            Assignee: Joe Bowser
>            Priority: Minor
>
> Starting with Android 8 Oreo (API level 26) Android allows developers to 
> create app icons using a background and a foreground image file. This feature 
> is called "adaptive icons". One major change that goes with this feature is 
> that icons get now clipped into a shape by the system. This leads to a very 
> uniform and clean design like on iOS where all icons are a rounded rectangle. 
> The other advantage is that visual effects can be applied to the icon by the 
> system due to the separation between foreground an background.
> Android Studio greatly assists the developer at the creation of the app icon 
> resources because it creates backwards compatible icons for older devices 
> that don't support the adaptive icons feature.
> https://developer.android.com/studio/write/image-asset-studio.html
> The following resources are created.
> {code}
> res
> ├── drawable
> │   ├── ic_launcher_background.xml
> │   └── ic_launcher_foreground.xml
> ├── mipmap-anydpi-v26
> │   ├── ic_launcher.xml
> │   └── ic_launcher_round.xml
> ├── mipmap-hdpi
> │   ├── ic_launcher.png
> │   └── ic_launcher_round.png
> ├── mipmap-mdpi
> │   ├── ic_launcher.png
> │   └── ic_launcher_round.png
> ├── mipmap-xhdpi
> │   ├── ic_launcher.png
> │   └── ic_launcher_round.png
> ├── mipmap-xxhdpi
> │   ├── ic_launcher.png
> │   └── ic_launcher_round.png
> └── mipmap-xxxhdpi
>      ├── ic_launcher.png
>      └── ic_launcher_round.png
> {code}
> It is currently not clear how these files can be used inside a cordova 
> project.
> - res/mipmap-anydpi-v26/ic_launcher.xml points to other image resources 
> (foreground, background)
> - The foreground and background can be vector graphics (-> xml files in 
> res/drawable)
> - The documentation needs to be updated
> (I've never reported an issue using JIRA before - I'm only used to github. 
> So, please guide me if I'm doing something incorrect)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org

Reply via email to