스플래시 화면 표시 시간 조정 및 배경색 변경

This commit is contained in:
hansoo
2025-03-19 22:51:02 +09:00
parent 2ec913c6c0
commit c5a09a1cbd
54 changed files with 2771 additions and 16 deletions

View File

@@ -1,4 +1,3 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
@@ -6,19 +5,20 @@ const config: CapacitorConfig = {
appName: '젤리의 적자탈출',
webDir: 'dist',
server: {
url: 'https://zfinance.zellyy.com/',
androidScheme: 'https',
iosScheme: 'https',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 1000,
launchShowDuration: 3000,
launchAutoHide: true,
backgroundColor: "#FFFFFF",
androidSplashResourceName: "splash",
splashFullScreen: true,
splashImmersive: true,
androidScaleType: "CENTER_CROP",
showSpinner: false,
androidScaleType: "CENTER_INSIDE",
backgroundColor: "#FFFFFF"
splashFullScreen: false,
splashImmersive: false
},
Keyboard: {
resize: "body",
@@ -26,16 +26,8 @@ const config: CapacitorConfig = {
resizeOnFullScreen: true
}
},
android: {
buildOptions: {
keystorePath: "",
keystoreAlias: "",
releaseType: "AAB"
}
},
ios: {
scheme: "젤리의적자탈출",
contentInset: "automatic"
scheme: "App"
}
};