@capacitor/splash-screen 5.0.7-nightly-20231108T150452.0 → 5.0.8-dev-20240315T155919.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -185,7 +185,7 @@ To use splash screen images named something other than `splash.png`, set `androi
185
185
 
186
186
  This plugin will use the following project variables (defined in your app's `variables.gradle` file):
187
187
 
188
- - `coreSplashScreenVersion` version of `androidx.core:core-splashscreen` (default: `1.0.1`)
188
+ - `coreSplashScreenVersion` version of `androidx.core:core-splashscreen` (default: `1.0.0`)
189
189
 
190
190
  ## Example Guides
191
191
 
@@ -4,7 +4,7 @@ ext {
4
4
  androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
5
5
  androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
6
6
  androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
7
- coreSplashScreenVersion = project.hasProperty('coreSplashScreenVersion') ? rootProject.ext.coreSplashScreenVersion : '1.0.1'
7
+ coreSplashScreenVersion = project.hasProperty('coreSplashScreenVersion') ? rootProject.ext.coreSplashScreenVersion : '1.0.0'
8
8
  }
9
9
 
10
10
  buildscript {
@@ -16,7 +16,7 @@ buildscript {
16
16
  }
17
17
  }
18
18
  dependencies {
19
- classpath 'com.android.tools.build:gradle:8.2.0-rc02'
19
+ classpath 'com.android.tools.build:gradle:8.0.0'
20
20
  if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
21
21
  classpath 'io.github.gradle-nexus:publish-plugin:1.3.0'
22
22
  }
@@ -32,10 +32,10 @@ if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
32
32
 
33
33
  android {
34
34
  namespace "com.capacitorjs.plugins.splashscreen"
35
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
35
+ compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33
36
36
  defaultConfig {
37
37
  minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
38
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
38
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33
39
39
  versionCode 1
40
40
  versionName "1.0"
41
41
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -131,14 +131,6 @@ public class SplashScreen {
131
131
  isVisible = false;
132
132
  }
133
133
  );
134
- } else {
135
- windowSplashScreen.setOnExitAnimationListener(
136
- windowSplashScreenView -> {
137
- isHiding = false;
138
- isVisible = false;
139
- windowSplashScreenView.remove();
140
- }
141
- );
142
134
  }
143
135
 
144
136
  // Set Pre Draw Listener & Delay Drawing Until Duration Elapses
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/splash-screen",
3
- "version": "5.0.7-nightly-20231108T150452.0",
3
+ "version": "5.0.8-dev-20240315T155919.0",
4
4
  "description": "The Splash Screen API provides methods for showing or hiding a Splash image.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -48,7 +48,7 @@
48
48
  "@capacitor/android": "^5.0.0",
49
49
  "@capacitor/cli": "^5.0.0",
50
50
  "@capacitor/core": "^5.0.0",
51
- "@capacitor/docgen": "0.2.0",
51
+ "@capacitor/docgen": "0.2.2",
52
52
  "@capacitor/ios": "^5.0.0",
53
53
  "@ionic/eslint-config": "^0.3.0",
54
54
  "@ionic/prettier-config": "~1.0.1",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "c44bf164b01d5f5ed405695f06efd36a881c4272"
83
+ "gitHead": "0d77330d174d8cd4b9653d902f85cffd964ffc82"
84
84
  }