Android - Added Dynamic Delivery options#252
Merged
mortend merged 2 commits intofuse-open:masterfrom Nov 11, 2019
Merged
Conversation
```
"Android": {
"SupportedLanguages": ["en"],
"Bundle": {
"CompressNativeLibraries": true,
"Language": {
"EnableSplit": false
},
"Density": {
"EnableSplit": true
},
"ABI": {
"EnableSplit": true
}
},
...
```
Native Library Compression
- turn on/off compression
- https://developer.android.com/studio/projects/dynamic-delivery/configure-base#base_manifest
App Supported Languages
- define apps official languages so that other language resources in plugins will be removed except for the apps official languages
- https://developer.android.com/studio/build/shrink-code#unused-alt-resources
Bundle Base Split Options
- Language, Density and ABI options are made available to turn on/off
- https://developer.android.com/studio/projects/dynamic-delivery/configure-base#disable_config_apks
mortend
requested changes
Nov 11, 2019
Member
mortend
left a comment
There was a problem hiding this comment.
I think it's better to use same terminology and semantics as Android docs when we can, and I left a comment on one of the new properties.
Otherwise these new project properties look useful. Thanks!
mortend
reviewed
Nov 11, 2019
Define which size screens your app supports with these properties: https://developer.android.com/guide/topics/manifest/supports-screens-element ``` "Android": { "SupportsScreens" : { "Resizable" : "true", "NormalScreens" : "true", "LargeScreens" : "true", "XlargeScreens" : "true", "AnyDensity" : "true", "RequiresSmallestWidthDp": "320", ... }, ... ```
f864e99 to
f6c78a5
Compare
mortend
approved these changes
Nov 11, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Native Library Compression
App Supported Languages
Bundle Base Split Options
Supports Screens
Define which size screens your app supports with these properties: https://developer.android.com/guide/topics/manifest/supports-screens-element