Installations
npm install cordova-plugin-animated-splashscreen
Developer Guide
Typescript
Yes
Module System
N/A
Node Version
8.11.1
NPM Version
5.6.0
Score
62
Supply Chain
94.3
Quality
73.2
Maintenance
25
Vulnerability
85.3
License
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
Objective-C (66.93%)
Java (14.15%)
C# (9.58%)
JavaScript (9.34%)
Developer
kitolog
Download Statistics
Total Downloads
4,917
Last Day
1
Last Week
6
Last Month
47
Last Year
478
GitHub Statistics
7 Stars
357 Commits
4 Forks
2 Watching
15 Branches
1 Contributors
Package Meta Information
Latest Version
1.1.3
Package Id
cordova-plugin-animated-splashscreen@1.1.3
Unpacked Size
261.09 kB
Size
48.41 kB
File Count
67
NPM Version
5.6.0
Node Version
8.11.1
Total Downloads
Cumulative downloads
Total Downloads
4,917
Last day
0%
1
Compared to previous day
Last week
-14.3%
6
Compared to previous week
Last month
327.3%
47
Compared to previous month
Last year
5.3%
478
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
1
Dev Dependencies
1
cordova-plugin-animated-splashscreen
Animated Splash Screen Plugin
Based on cordova-custom-config plugin and cordova-plugin-splashscreen
- Animation based on changing images one-by-one. Created animation slides and place to the resourses directory
- Update config.xml file (listed below)
- API is the same as in cordova-plugin-splashscreen
Installation
// npm hosted (new) id cordova plugin add cordova-plugin-animated-splashscreen
// you may also install directly from this repo cordova plugin add https://github.com/kitolog/cordova-plugin-animated-splashscreen
Setup:
Add to config.xml:
Common:
Duration in seconds
<preference name="AnimatedSplashScreenAnimationDuration" value="5" />
Disable original splashscreen plugin, it's not needed
<preference name="SplashScreen" value="false" />
Repeat count
0 - no repeat
<preference name="AnimatedSplashScreenAnimationRepeatCount" value="0" />
iOS
IOS Images Order:
<preference name="AnimatedSplashScreenIosImages" value="animated-1.png,animated-2.png,animated-3.png,animated-4.png,animated-5.png" />
...
IOS Images paths:
<platform name="ios">
...
<custom-resource catalog="animated-1" idiom="universal" scale="1x" src="resources/ios/splash/animated-1.png" type="image" />
<custom-resource catalog="animated-2" idiom="universal" scale="1x" src="resources/ios/splash/animated-2.png" type="image" />
...</platform>
`
Android
Android Images Order:
<preference name="AnimatedSplashScreenAndroidImages" value="animated1,animated2,animated3,animated4,animated5" />
...
Android Images paths:
<platform name="android">
...
<resource-file src="resources/android/splash/animated-1.png" target="app/src/main/res/drawable-port-xxxhdpi/animated1.png" />
<resource-file src="resources/android/splash/animated-2.png" target="app/src/main/res/drawable-port-xxxhdpi/animated2.png" />
...</platform>
NOTE: Android screen sizes:
(in example code, image has 1920 x 1280 px size, so it should be placed to drawable-port-xxxhdpi)
LDPI:
- Portrait: 200 x 320 px
- Landscape: 320 x 200 px
MDPI:
- Portrait: 320 x 480 px
- Landscape: 480 x 320 px
HDPI:
- Portrait: 480 x 800 px
- Landscape: 800 x 480 px
XHDPI:
- Portrait: 720 x 1280 px
- Landscape: 1280 x 720 px
XXHDPI:
- Portrait: 960 x 1600 px
- Landscape: 1600 x 960 px
XXXHDPI:
- Portrait: 1280 x 1920 px
- Landscape: 1920 x 1280 px
What's new
- 1.0.0 - initial code, added iOS support
- 1.0.1 - added config params, updated iOS platform
- 1.0.2 - added Android source
- 1.0.4 - optimized Android source
- 1.0.8 - updated Android theme
- 1.1.0 - stable version with iOS and Android support
- 1.1.2 - Android image paths fixes
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Score
3
/10
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More