diff --git a/README.md b/README.md index e9cf6e6..0958ca9 100644 --- a/README.md +++ b/README.md @@ -103,10 +103,14 @@ Include in your ```config.xml``` file: + + + + diff --git a/index.js b/index.js index 9a60de3..28f1f4b 100644 --- a/index.js +++ b/index.js @@ -156,7 +156,11 @@ var getPlatformSplashs = function() { { name:"screen-mdpi-portrait.png", width: 320, height: 470, density:"port-mdpi" }, // 480x800 { name:"screen-mdpi-landscape.png", width: 470, height: 320, density:"land-mdpi" }, // 800x480 { name:"screen-xhdpi-portrait.png", width: 720, height: 960, density:"port-xhdpi" }, // 720x1280 - { name:"screen-xhdpi-landscape.png", width: 960, height: 720, density:"land-xhdpi" } // 1280x720 + { name:"screen-xhdpi-landscape.png", width: 960, height: 720, density:"land-xhdpi" }, // 1280x720 + { name:"screen-xxhdpi-portrait.png", width: 960, height: 1600, density:"port-xxhdpi" }, // 960x1600 + { name:"screen-xxhdpi-landscape.png", width: 1600, height: 960, density:"land-xxhdpi" }, // 1600x960 + { name:"screen-xxxhdpi-portrait.png", width: 1280, height: 1920, density:"port-xxhdpi" }, // 1280x1920 + { name:"screen-xxxhdpi-landscape.png", width: 1920, height: 1280, density:"land-xxhdpi" } // 1920x1280 ] }); @@ -470,4 +474,4 @@ function generate(options) { module.exports = { generate: generate -}; \ No newline at end of file +};