Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
7 changes: 6 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down