diff --git a/android/app/build.gradle b/android/app/build.gradle index f3d8196..18f539c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -15,7 +15,7 @@ android { applicationId "md.zennotes" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 23 + versionCode 24 versionName "1.1.21" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { diff --git a/vite.config.ts b/vite.config.ts index bfedb2f..d717c2c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -50,7 +50,12 @@ export default defineConfig({ allow: [ROOT] } }, - plugins: [...zenNotesAssets({ harper: false }), react()], + // harper: phones use the system keyboard for spelling; the core never loads it here. + // excalidraw: the core helper would copy Excalidraw's whole font pack (234 files, + // ~13 MB, 12 MB of it the Xiaolai CJK handwriting subsets) into the APK. 1.1.20 + // shipped without it and drawings resolved fonts as they always have, so keep + // the download at ~31 MB instead of ~44 MB. + plugins: [...zenNotesAssets({ harper: false, excalidraw: false }), react()], build: { outDir: 'dist', emptyOutDir: true,