Aucune description

liming bddcfa08a2 111 il y a 3 semaines
.vscode b03693d699 1 il y a 1 mois
android 3008db59ba 2 il y a 3 semaines
assets bddcfa08a2 111 il y a 3 semaines
cert b03693d699 1 il y a 1 mois
public 8c785a7cf7 feat: 个人信息 il y a 3 semaines
scripts 6b8e62f521 1 il y a 3 semaines
settings fdc9e002ad feat: i18n il y a 1 mois
src bddcfa08a2 111 il y a 3 semaines
.env 6d66112152 feat: isNativeApp il y a 1 mois
.gitignore 7368fa07a6 1 il y a 1 mois
README.md bddcfa08a2 111 il y a 3 semaines
auto-imports.d.ts 6d66112152 feat: isNativeApp il y a 1 mois
capacitor.config.ts bddcfa08a2 111 il y a 3 semaines
index.html bddcfa08a2 111 il y a 3 semaines
jsconfig.json 6d66112152 feat: isNativeApp il y a 1 mois
package.json bddcfa08a2 111 il y a 3 semaines
vite.config.js c3d4e5ef6c feat:1 il y a 3 semaines

README.md

wallet_app

# 清理旧构建

xcodebuild clean -workspace App.xcworkspace -scheme App

导出 IPA

xcodebuild -exportArchive \
  -archivePath build/App.xcarchive \
  -exportOptionsPlist ExportOptions.plist \
  -exportPath build/ipa

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Compile and Minify for Production

npm run build
assets/
├── icon-only.png        -- 完整的应用图标文件
├── icon-foreground.png  -- 图标的前景层(核心图形)(背景层)
├── icon-background.png  -- 图标的背景层(纯色或简单纹理)(前景层)
├── splash.png           -- 默认启动画面(亮色主题)
└── splash-dark.png      -- 深色主题下的启动画面
android/app/build.gradle
apply plugin: 'com.android.application'


 signingConfigs {
        release {
            storeFile file("f62.keystore")  
            keyAlias "__uni__9c0e590"
            storePassword "LkSvN1Ys"    
            keyPassword "LkSvN1Ys"        
        }
    }

    buildTypes {
        release {
            signingConfig signingConfigs.release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }