No Description

wkw 0ca8a9c842 Merge branch 'master' of https://git.nanodreamtech.com/wkw/wallet_app 2 weeks ago
.vscode b03693d699 1 1 month ago
android 6b7a6ffda0 feat: dapp 3 weeks ago
assets bddcfa08a2 111 3 weeks ago
cert b03693d699 1 1 month ago
public 8c785a7cf7 feat: 个人信息 3 weeks ago
scripts f33df87307 1 3 weeks ago
settings fdc9e002ad feat: i18n 1 month ago
src cd5e02b49d 添加指纹识别 2 weeks ago
.env 921517d8b2 2 2 weeks ago
.gitignore 7368fa07a6 1 1 month ago
README.md f6a54b45af fix: ui高度兼容性 2 weeks ago
auto-imports.d.ts 6d66112152 feat: isNativeApp 1 month ago
capacitor.config.ts 5d88c49aef 1 2 weeks ago
index.html ce2d79d612 getBottomNotchHeight 3 weeks ago
jsconfig.json 6d66112152 feat: isNativeApp 1 month ago
package.json 5d88c49aef 1 2 weeks ago
vite.config.js f33df87307 1 3 weeks ago

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'
        }
    }

ext {
    minSdkVersion = 26
    compileSdkVersion = 35
    targetSdkVersion = 35
    androidxActivityVersion = '1.9.2'
    androidxAppCompatVersion = '1.7.0'
    androidxCoordinatorLayoutVersion = '1.2.0'
    androidxCoreVersion = '1.15.0'
    androidxFragmentVersion = '1.8.4'
    coreSplashScreenVersion = '1.0.1'
    androidxWebkitVersion = '1.12.1'
    junitVersion = '4.13.2'
    androidxJunitVersion = '1.2.1'
    androidxEspressoCoreVersion = '3.6.1'
    cordovaAndroidVersion = '10.1.1'
}