wkw 6 päivää sitten
vanhempi
sitoutus
34ec8d88be
37 muutettua tiedostoa jossa 32 lisäystä ja 49 poistoa
  1. 1 1
      android/app/capacitor.build.gradle
  2. 2 8
      android/app/src/main/AndroidManifest.xml
  3. BIN
      android/app/src/main/res/drawable-land-hdpi/splash.png
  4. BIN
      android/app/src/main/res/drawable-land-mdpi/splash.png
  5. BIN
      android/app/src/main/res/drawable-land-xhdpi/splash.png
  6. BIN
      android/app/src/main/res/drawable-land-xxhdpi/splash.png
  7. BIN
      android/app/src/main/res/drawable-land-xxxhdpi/splash.png
  8. BIN
      android/app/src/main/res/drawable-port-hdpi/splash.png
  9. BIN
      android/app/src/main/res/drawable-port-mdpi/splash.png
  10. BIN
      android/app/src/main/res/drawable-port-xhdpi/splash.png
  11. BIN
      android/app/src/main/res/drawable-port-xxhdpi/splash.png
  12. BIN
      android/app/src/main/res/drawable-port-xxxhdpi/splash.png
  13. BIN
      android/app/src/main/res/drawable/splash.png
  14. 6 2
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
  15. 6 2
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
  16. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher.png
  17. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
  18. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
  19. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher.png
  20. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
  21. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
  22. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
  23. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
  24. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  25. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
  26. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
  27. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  28. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  29. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
  30. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  31. 8 8
      android/capacitor.settings.gradle
  32. 0 19
      src/components/Header/Header.vue
  33. 2 2
      src/views/dapp/index.vue
  34. 1 1
      src/views/home/index.vue
  35. 2 2
      src/views/me/index.vue
  36. 2 2
      src/views/transaction/index.vue
  37. 2 2
      src/views/wallet/index.vue

+ 1 - 1
android/app/capacitor.build.gradle

@@ -18,7 +18,7 @@ dependencies {
     implementation project(':capacitor-toast')
 
 }
-apply from: "../../node_modules/.pnpm/cordova-plugin-fingerprint-aio@6.0.1/node_modules/cordova-plugin-fingerprint-aio/src/android/build.gradle"
+apply from: "../../node_modules/.store/cordova-plugin-fingerprint-aio@6.0.1/node_modules/cordova-plugin-fingerprint-aio/src/android/build.gradle"
 
 if (hasProperty('postBuildExtras')) {
   postBuildExtras()

+ 2 - 8
android/app/src/main/AndroidManifest.xml

@@ -1,6 +1,5 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" ?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
-
     <application
         android:allowBackup="true"
         android:icon="@mipmap/ic_launcher"
@@ -8,7 +7,6 @@
         android:roundIcon="@mipmap/ic_launcher_round"
         android:supportsRtl="true"
         android:theme="@style/AppTheme">
-
         <activity
             android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
             android:name=".MainActivity"
@@ -16,12 +14,10 @@
             android:theme="@style/AppTheme.NoActionBarLaunch"
             android:launchMode="singleTask"
             android:exported="true">
-
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
-
         </activity>
 
         <provider
@@ -29,9 +25,7 @@
             android:authorities="${applicationId}.fileprovider"
             android:exported="false"
             android:grantUriPermissions="true">
-            <meta-data
-                android:name="android.support.FILE_PROVIDER_PATHS"
-                android:resource="@xml/file_paths"></meta-data>
+            <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
         </provider>
     </application>
 

BIN
android/app/src/main/res/drawable-land-hdpi/splash.png


BIN
android/app/src/main/res/drawable-land-mdpi/splash.png


BIN
android/app/src/main/res/drawable-land-xhdpi/splash.png


BIN
android/app/src/main/res/drawable-land-xxhdpi/splash.png


BIN
android/app/src/main/res/drawable-land-xxxhdpi/splash.png


BIN
android/app/src/main/res/drawable-port-hdpi/splash.png


BIN
android/app/src/main/res/drawable-port-mdpi/splash.png


BIN
android/app/src/main/res/drawable-port-xhdpi/splash.png


BIN
android/app/src/main/res/drawable-port-xxhdpi/splash.png


BIN
android/app/src/main/res/drawable-port-xxxhdpi/splash.png


BIN
android/app/src/main/res/drawable/splash.png


+ 6 - 2
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml

@@ -1,5 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
-    <background android:drawable="@color/ic_launcher_background"/>
-    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
+    <background>
+        <inset android:drawable="@mipmap/ic_launcher_background" android:inset="16.7%" />
+    </background>
+    <foreground>
+        <inset android:drawable="@mipmap/ic_launcher_foreground" android:inset="16.7%" />
+    </foreground>
 </adaptive-icon>

+ 6 - 2
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml

@@ -1,5 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
-    <background android:drawable="@color/ic_launcher_background"/>
-    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
+    <background>
+        <inset android:drawable="@mipmap/ic_launcher_background" android:inset="16.7%" />
+    </background>
+    <foreground>
+        <inset android:drawable="@mipmap/ic_launcher_foreground" android:inset="16.7%" />
+    </foreground>
 </adaptive-icon>

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png


BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png


BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png


BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png


BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png


BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png


BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png


BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png


BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png


BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png


BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png


BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png


BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png


BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png


BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png


+ 8 - 8
android/capacitor.settings.gradle

@@ -1,24 +1,24 @@
 // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
 include ':capacitor-android'
-project(':capacitor-android').projectDir = new File('../node_modules/.pnpm/@capacitor+android@7.4.0_@capacitor+core@7.4.0/node_modules/@capacitor/android/capacitor')
+project(':capacitor-android').projectDir = new File('../node_modules/.store/@capacitor+android@7.4.1/node_modules/@capacitor/android/capacitor')
 
 include ':aparajita-capacitor-biometric-auth'
-project(':aparajita-capacitor-biometric-auth').projectDir = new File('../node_modules/.pnpm/@aparajita+capacitor-biometric-auth@9.0.0_@capacitor+core@7.4.0/node_modules/@aparajita/capacitor-biometric-auth/android')
+project(':aparajita-capacitor-biometric-auth').projectDir = new File('../node_modules/.store/@aparajita+capacitor-biometric-auth@9.0.0/node_modules/@aparajita/capacitor-biometric-auth/android')
 
 include ':capacitor-app'
-project(':capacitor-app').projectDir = new File('../node_modules/.pnpm/@capacitor+app@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/app/android')
+project(':capacitor-app').projectDir = new File('../node_modules/.store/@capacitor+app@7.0.1/node_modules/@capacitor/app/android')
 
 include ':capacitor-browser'
-project(':capacitor-browser').projectDir = new File('../node_modules/.pnpm/@capacitor+browser@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/browser/android')
+project(':capacitor-browser').projectDir = new File('../node_modules/.store/@capacitor+browser@7.0.1/node_modules/@capacitor/browser/android')
 
 include ':capacitor-clipboard'
-project(':capacitor-clipboard').projectDir = new File('../node_modules/.pnpm/@capacitor+clipboard@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/clipboard/android')
+project(':capacitor-clipboard').projectDir = new File('../node_modules/.store/@capacitor+clipboard@7.0.1/node_modules/@capacitor/clipboard/android')
 
 include ':capacitor-device'
-project(':capacitor-device').projectDir = new File('../node_modules/.pnpm/@capacitor+device@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/device/android')
+project(':capacitor-device').projectDir = new File('../node_modules/.store/@capacitor+device@7.0.1/node_modules/@capacitor/device/android')
 
 include ':capacitor-status-bar'
-project(':capacitor-status-bar').projectDir = new File('../node_modules/.pnpm/@capacitor+status-bar@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/status-bar/android')
+project(':capacitor-status-bar').projectDir = new File('../node_modules/.store/@capacitor+status-bar@7.0.1/node_modules/@capacitor/status-bar/android')
 
 include ':capacitor-toast'
-project(':capacitor-toast').projectDir = new File('../node_modules/.pnpm/@capacitor+toast@7.0.1_@capacitor+core@7.4.0/node_modules/@capacitor/toast/android')
+project(':capacitor-toast').projectDir = new File('../node_modules/.store/@capacitor+toast@7.0.1/node_modules/@capacitor/toast/android')

+ 0 - 19
src/components/Header/Header.vue

@@ -1,19 +0,0 @@
-<template>
-    <div>
-        <van-nav-bar :title="title" />
-    </div>
-</template>
-
-<script setup>
-import { ref,onMounted } from "vue";
-const {title} = defineProps({
-    title: {
-        type: String,
-        default: () => '',
-    }
-});
-</script>
-
-<style lang="less" scoped>
-
-</style>

+ 2 - 2
src/views/dapp/index.vue

@@ -1,11 +1,11 @@
 <template>
     <div>
-      <Header title="DAPP"></Header>
+
     </div>
   </template>
   
   <script setup>
-  import Header from "@/components/Header/Header.vue";
+
   </script>
   
   <style lang="less" scoped>

+ 1 - 1
src/views/home/index.vue

@@ -6,7 +6,7 @@
 </template>
 
 <script setup>
-import Header from "@/components/Header/Header.vue";
+
 </script>
 
 <style lang="less" scoped>

+ 2 - 2
src/views/me/index.vue

@@ -1,11 +1,11 @@
 <template>
     <div>
-      <Header title="我的"></Header>
+      
     </div>
   </template>
   
   <script setup>
-  import Header from "@/components/Header/Header.vue";
+  
   </script>
   
   <style lang="less" scoped>

+ 2 - 2
src/views/transaction/index.vue

@@ -1,11 +1,11 @@
 <template>
     <div>
-      <Header title="交易"></Header>
+     
     </div>
   </template>
   
   <script setup>
-  import Header from "@/components/Header/Header.vue";
+  
   </script>
   
   <style lang="less" scoped>

+ 2 - 2
src/views/wallet/index.vue

@@ -1,11 +1,11 @@
 <template>
     <div>
-      <Header title="钱包"></Header>
+      
     </div>
   </template>
   
   <script setup>
-  import Header from "@/components/Header/Header.vue";
+  
   </script>
   
   <style lang="less" scoped>