diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index e7b7cfca47..9fcea9267a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -611,6 +611,13 @@ jobs:
path: ./test-results
if-no-files-found: ignore
+ test-build-ios:
+ uses: ./.github/workflows/release-mobile.yml
+ with:
+ build-type: canary
+ build-target: development
+ secrets: inherit
+
test-done:
needs:
- analyze
@@ -622,9 +629,11 @@ jobs:
- unit-test
- build-native
- build-server-native
+ - build-electron-renderer
- server-test
- server-e2e-test
- desktop-test
+ - test-build-ios
if: always()
runs-on: ubuntu-latest
name: 3, 2, 1 Launch
diff --git a/.github/workflows/release-desktop-automatically.yml b/.github/workflows/release-automatically.yml
similarity index 76%
rename from .github/workflows/release-desktop-automatically.yml
rename to .github/workflows/release-automatically.yml
index 72bf108cdb..f791eef685 100644
--- a/.github/workflows/release-desktop-automatically.yml
+++ b/.github/workflows/release-automatically.yml
@@ -1,4 +1,4 @@
-name: Release Desktop Automatically
+name: Release Desktop/Mobile Automatically
on:
push:
@@ -23,6 +23,7 @@ jobs:
with:
workflow: release-desktop.yml
inputs: '{ "build-type": "canary", "is-draft": false, "is-pre-release": true }'
+
- name: dispatch desktop release by schedule
if: ${{ github.event_name == 'schedule' }}
uses: benc-uk/workflow-dispatch@v1
@@ -30,3 +31,8 @@ jobs:
workflow: release-desktop.yml
inputs: '{ "build-type": "canary", "is-draft": false, "is-pre-release": true }'
ref: canary
+ - name: dispatch desktop release by tag
+ uses: benc-uk/workflow-dispatch@v1
+ with:
+ workflow: release-mobile.yml
+ inputs: '{ "build-type": "canary", "build-target": "distribution" }'
diff --git a/.github/workflows/release-mobile.yml b/.github/workflows/release-mobile.yml
new file mode 100644
index 0000000000..9c110c5973
--- /dev/null
+++ b/.github/workflows/release-mobile.yml
@@ -0,0 +1,117 @@
+name: Release Mobile App
+
+on:
+ workflow_call:
+ inputs:
+ build-target:
+ description: 'Build Target'
+ type: string
+ required: true
+ default: development
+ build-type:
+ description: 'Build Type'
+ type: string
+ required: true
+ default: canary
+ workflow_dispatch:
+ inputs:
+ build-target:
+ description: 'Build Target'
+ type: choice
+ required: true
+ default: distribution
+ options:
+ - development
+ - distribution
+ build-type:
+ description: 'Build Type'
+ type: choice
+ required: true
+ default: canary
+ options:
+ - canary
+ - beta
+ - stable
+env:
+ BUILD_TYPE: ${{ github.event.inputs.build-type || inputs.build-type }}
+ DEBUG: napi:*
+ KEYCHAIN_NAME: ${{ github.workspace }}/signing_temp
+
+jobs:
+ build-ios-web:
+ runs-on: ubuntu-latest
+ environment: ${{ github.event.inputs.build-type || inputs.build-type }}
+ outputs:
+ RELEASE_VERSION: ${{ steps.version.outputs.APP_VERSION }}
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup Version
+ id: version
+ uses: ./.github/actions/setup-version
+ - name: Setup Node.js
+ uses: ./.github/actions/setup-node
+ - name: Setup @sentry/cli
+ uses: ./.github/actions/setup-sentry
+ - name: Build Mobile
+ run: yarn nx build @affine/ios --skip-nx-cache
+ env:
+ PUBLIC_PATH: '/'
+ MIXPANEL_TOKEN: ${{ secrets.MIXPANEL_TOKEN }}
+ SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
+ SENTRY_PROJECT: 'affine'
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+ SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
+ SENTRY_RELEASE: ${{ steps.version.outputs.APP_VERSION }}
+ RELEASE_VERSION: ${{ steps.version.outputs.APP_VERSION }}
+ SKIP_NX_CACHE: 'true'
+ - name: Upload ios artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: ios
+ path: packages/frontend/apps/ios/dist
+ ios:
+ runs-on: macos-latest
+ needs:
+ - build-ios-web
+ steps:
+ - uses: actions/checkout@v4
+ - name: Download mobile artifact
+ uses: actions/download-artifact@v4
+ with:
+ name: ios
+ path: packages/frontend/apps/ios/dist
+ - name: Setup Node.js
+ uses: ./.github/actions/setup-node
+ timeout-minutes: 10
+ with:
+ extra-flags: workspaces focus @affine/ios
+ playwright-install: false
+ electron-install: false
+ hard-link-nm: false
+ enableScripts: false
+ - name: Cap sync
+ run: yarn workspace @affine/ios cap sync
+ - name: Signing By Apple Developer ID
+ uses: apple-actions/import-codesign-certs@v3
+ id: import-codesign-certs
+ with:
+ p12-file-base64: ${{ secrets.CERTIFICATES_P12_MOBILE }}
+ p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD_MOBILE }}
+ - uses: maxim-lobanov/setup-xcode@v1
+ with:
+ xcode-version: latest-stable
+ - name: Testflight
+ if: ${{ github.event.inputs.build-type || inputs.build-type }} != 'stable'
+ working-directory: packages/frontend/apps/ios/App
+ run: |
+ echo -n "${{ env.BUILD_PROVISION_PROFILE }}" | base64 --decode -o $PP_PATH
+ mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
+ cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
+ fastlane beta
+ env:
+ BUILD_TARGET: ${{ github.event.inputs.build-target || inputs.build-target }}
+ BUILD_PROVISION_PROFILE: ${{ secrets.BUILD_PROVISION_PROFILE }}
+ PP_PATH: ${{ runner.temp }}/build_pp.mobileprovision
+ APPLE_STORE_CONNECT_API_KEY_ID: ${{ secrets.APPLE_STORE_CONNECT_API_KEY_ID }}
+ APPLE_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APPLE_STORE_CONNECT_API_ISSUER_ID }}
+ APPLE_STORE_CONNECT_API_KEY: ${{ secrets.APPLE_STORE_CONNECT_API_KEY }}
diff --git a/package.json b/package.json
index 74cc0f1c84..a1558d7438 100644
--- a/package.json
+++ b/package.json
@@ -54,6 +54,7 @@
},
"devDependencies": {
"@affine/cli": "workspace:*",
+ "@capacitor/cli": "^6.1.2",
"@faker-js/faker": "^9.0.0",
"@istanbuljs/schema": "^0.1.3",
"@magic-works/i18n-codegen": "^0.6.0",
diff --git a/packages/frontend/apps/android/.gitignore b/packages/frontend/apps/android/.gitignore
new file mode 100644
index 0000000000..b5ddda903f
--- /dev/null
+++ b/packages/frontend/apps/android/.gitignore
@@ -0,0 +1,19 @@
+App/build
+App/Pods
+App/output
+App/App/public
+DerivedData
+xcuserdata
+
+# Cordova plugins for Capacitor
+capacitor-cordova-ios-plugins
+
+# Generated Config files
+App/App/capacitor.config.json
+App/App/config.xml
+App/**/*.p8
+*.mobileprovision
+*.ipa
+*.zip
+*.cer
+App/fastlane/report.xml
diff --git a/packages/frontend/apps/android/App/.gitignore b/packages/frontend/apps/android/App/.gitignore
new file mode 100644
index 0000000000..48354a3dfc
--- /dev/null
+++ b/packages/frontend/apps/android/App/.gitignore
@@ -0,0 +1,101 @@
+# Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
+
+# Built application files
+*.apk
+*.aar
+*.ap_
+*.aab
+
+# Files for the ART/Dalvik VM
+*.dex
+
+# Java class files
+*.class
+
+# Generated files
+bin/
+gen/
+out/
+# Uncomment the following line in case you need and you don't have the release build type files in your app
+# release/
+
+# Gradle files
+.gradle/
+build/
+
+# Local configuration file (sdk path, etc)
+local.properties
+
+# Proguard folder generated by Eclipse
+proguard/
+
+# Log Files
+*.log
+
+# Android Studio Navigation editor temp files
+.navigation/
+
+# Android Studio captures folder
+captures/
+
+# IntelliJ
+*.iml
+.idea/workspace.xml
+.idea/tasks.xml
+.idea/gradle.xml
+.idea/assetWizardSettings.xml
+.idea/dictionaries
+.idea/libraries
+# Android Studio 3 in .gitignore file.
+.idea/caches
+.idea/modules.xml
+# Comment next line if keeping position of elements in Navigation Editor is relevant for you
+.idea/navEditor.xml
+
+# Keystore files
+# Uncomment the following lines if you do not want to check your keystore files in.
+#*.jks
+#*.keystore
+
+# External native build folder generated in Android Studio 2.2 and later
+.externalNativeBuild
+.cxx/
+
+# Google Services (e.g. APIs or Firebase)
+# google-services.json
+
+# Freeline
+freeline.py
+freeline/
+freeline_project_description.json
+
+# fastlane
+fastlane/report.xml
+fastlane/Preview.html
+fastlane/screenshots
+fastlane/test_output
+fastlane/readme.md
+
+# Version control
+vcs.xml
+
+# lint
+lint/intermediates/
+lint/generated/
+lint/outputs/
+lint/tmp/
+# lint/reports/
+
+# Android Profiling
+*.hprof
+
+# Cordova plugins for Capacitor
+capacitor-cordova-android-plugins
+
+# Copied web assets
+app/src/main/assets/public
+
+# Generated Config files
+app/src/main/assets/capacitor.config.json
+app/src/main/assets/capacitor.plugins.json
+app/src/main/res/xml/config.xml
diff --git a/packages/frontend/apps/android/App/app/.gitignore b/packages/frontend/apps/android/App/app/.gitignore
new file mode 100644
index 0000000000..043df802a2
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/.gitignore
@@ -0,0 +1,2 @@
+/build/*
+!/build/.npmkeep
diff --git a/packages/frontend/apps/android/App/app/build.gradle b/packages/frontend/apps/android/App/app/build.gradle
new file mode 100644
index 0000000000..25ba97352b
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/build.gradle
@@ -0,0 +1,54 @@
+apply plugin: 'com.android.application'
+
+android {
+ namespace "app.affine.pro"
+ compileSdk rootProject.ext.compileSdkVersion
+ defaultConfig {
+ applicationId "app.affine.pro"
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ aaptOptions {
+ // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
+ // Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
+ ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
+ }
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+repositories {
+ flatDir{
+ dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
+ }
+}
+
+dependencies {
+ implementation fileTree(include: ['*.jar'], dir: 'libs')
+ implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
+ implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
+ implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
+ implementation project(':capacitor-android')
+ testImplementation "junit:junit:$junitVersion"
+ androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
+ androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
+ implementation project(':capacitor-cordova-android-plugins')
+}
+
+apply from: 'capacitor.build.gradle'
+
+try {
+ def servicesJSON = file('google-services.json')
+ if (servicesJSON.text) {
+ apply plugin: 'com.google.gms.google-services'
+ }
+} catch(Exception e) {
+ logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
+}
diff --git a/packages/frontend/apps/android/App/app/capacitor.build.gradle b/packages/frontend/apps/android/App/app/capacitor.build.gradle
new file mode 100644
index 0000000000..fdb4970c41
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/capacitor.build.gradle
@@ -0,0 +1,19 @@
+// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
+
+android {
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_17
+ targetCompatibility JavaVersion.VERSION_17
+ }
+}
+
+apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
+dependencies {
+
+
+}
+
+
+if (hasProperty('postBuildExtras')) {
+ postBuildExtras()
+}
diff --git a/packages/frontend/apps/android/App/app/proguard-rules.pro b/packages/frontend/apps/android/App/app/proguard-rules.pro
new file mode 100644
index 0000000000..f1b424510d
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
diff --git a/packages/frontend/apps/android/App/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java b/packages/frontend/apps/android/App/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java
new file mode 100644
index 0000000000..f2c2217efa
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package com.getcapacitor.myapp;
+
+import static org.junit.Assert.*;
+
+import android.content.Context;
+import androidx.test.ext.junit.runners.AndroidJUnit4;
+import androidx.test.platform.app.InstrumentationRegistry;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * @see Testing documentation
+ */
+@RunWith(AndroidJUnit4.class)
+public class ExampleInstrumentedTest {
+
+ @Test
+ public void useAppContext() throws Exception {
+ // Context of the app under test.
+ Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
+
+ assertEquals("com.getcapacitor.app", appContext.getPackageName());
+ }
+}
diff --git a/packages/frontend/apps/android/App/app/src/main/AndroidManifest.xml b/packages/frontend/apps/android/App/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..4d7ca38041
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/AndroidManifest.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/frontend/apps/android/App/app/src/main/java/app/affine/pro/MainActivity.java b/packages/frontend/apps/android/App/app/src/main/java/app/affine/pro/MainActivity.java
new file mode 100644
index 0000000000..14d1851144
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/java/app/affine/pro/MainActivity.java
@@ -0,0 +1,5 @@
+package app.affine.pro;
+
+import com.getcapacitor.BridgeActivity;
+
+public class MainActivity extends BridgeActivity {}
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-land-hdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-hdpi/splash.png
new file mode 100644
index 0000000000..e31573b4fc
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-hdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-land-mdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-mdpi/splash.png
new file mode 100644
index 0000000000..f7a64923ea
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-mdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xhdpi/splash.png
new file mode 100644
index 0000000000..807725501b
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxhdpi/splash.png
new file mode 100644
index 0000000000..14c6c8fe39
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxxhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxxhdpi/splash.png
new file mode 100644
index 0000000000..244ca2506d
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-land-xxxhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-port-hdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-hdpi/splash.png
new file mode 100644
index 0000000000..74faaa583c
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-hdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-port-mdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-mdpi/splash.png
new file mode 100644
index 0000000000..e944f4ad4e
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-mdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xhdpi/splash.png
new file mode 100644
index 0000000000..564a82ff95
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxhdpi/splash.png
new file mode 100644
index 0000000000..bfabe6871a
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxxhdpi/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxxhdpi/splash.png
new file mode 100644
index 0000000000..6929071268
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable-port-xxxhdpi/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/packages/frontend/apps/android/App/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 0000000000..c7bd21dbd8
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable/ic_launcher_background.xml b/packages/frontend/apps/android/App/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000000..d5fccc538c
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/frontend/apps/android/App/app/src/main/res/drawable/splash.png b/packages/frontend/apps/android/App/app/src/main/res/drawable/splash.png
new file mode 100644
index 0000000000..f7a64923ea
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/drawable/splash.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/layout/activity_main.xml b/packages/frontend/apps/android/App/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000000..b5ad138701
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000000..036d09bc5f
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000000..036d09bc5f
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000..c023e50595
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000000..2127973b2d
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000000..b441f37d6a
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000..72905b854c
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000000..8ed0605c27
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000000..9502e47a2c
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000..4d1e077104
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000000..df0f15880b
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000000..853db043d8
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..6cdf97c119
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000000..2960cbb610
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000000..8e3093a86f
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..46de6e255a
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000000..d2ea9abed3
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000000..a40d73e9c6
Binary files /dev/null and b/packages/frontend/apps/android/App/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/packages/frontend/apps/android/App/app/src/main/res/values/ic_launcher_background.xml b/packages/frontend/apps/android/App/app/src/main/res/values/ic_launcher_background.xml
new file mode 100644
index 0000000000..c5d5899fdf
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/app/src/main/res/values/strings.xml b/packages/frontend/apps/android/App/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000000..e727bd79de
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/values/strings.xml
@@ -0,0 +1,7 @@
+
+
+ AFFiNE
+ AFFiNE
+ app.affine.pro
+ app.affine.pro
+
diff --git a/packages/frontend/apps/android/App/app/src/main/res/values/styles.xml b/packages/frontend/apps/android/App/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000000..be874e54a4
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/values/styles.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/app/src/main/res/xml/file_paths.xml b/packages/frontend/apps/android/App/app/src/main/res/xml/file_paths.xml
new file mode 100644
index 0000000000..bd0c4d80d0
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/main/res/xml/file_paths.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java b/packages/frontend/apps/android/App/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java
new file mode 100644
index 0000000000..0297327842
--- /dev/null
+++ b/packages/frontend/apps/android/App/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java
@@ -0,0 +1,18 @@
+package com.getcapacitor.myapp;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see Testing documentation
+ */
+public class ExampleUnitTest {
+
+ @Test
+ public void addition_isCorrect() throws Exception {
+ assertEquals(4, 2 + 2);
+ }
+}
diff --git a/packages/frontend/apps/android/App/build.gradle b/packages/frontend/apps/android/App/build.gradle
new file mode 100644
index 0000000000..85a5dda2db
--- /dev/null
+++ b/packages/frontend/apps/android/App/build.gradle
@@ -0,0 +1,29 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+
+ repositories {
+ google()
+ mavenCentral()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:8.2.1'
+ classpath 'com.google.gms:google-services:4.4.0'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+apply from: "variables.gradle"
+
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/packages/frontend/apps/android/App/capacitor.settings.gradle b/packages/frontend/apps/android/App/capacitor.settings.gradle
new file mode 100644
index 0000000000..60dade133e
--- /dev/null
+++ b/packages/frontend/apps/android/App/capacitor.settings.gradle
@@ -0,0 +1,3 @@
+// 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/@capacitor/android/capacitor')
diff --git a/packages/frontend/apps/android/App/gradle.properties b/packages/frontend/apps/android/App/gradle.properties
new file mode 100644
index 0000000000..2e87c52f83
--- /dev/null
+++ b/packages/frontend/apps/android/App/gradle.properties
@@ -0,0 +1,22 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx1536m
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
diff --git a/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.jar b/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000000..033e24c4cd
Binary files /dev/null and b/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.properties b/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000000..c747538fb3
--- /dev/null
+++ b/packages/frontend/apps/android/App/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,7 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
+networkTimeout=10000
+validateDistributionUrl=true
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/packages/frontend/apps/android/App/gradlew b/packages/frontend/apps/android/App/gradlew
new file mode 100755
index 0000000000..fcb6fca147
--- /dev/null
+++ b/packages/frontend/apps/android/App/gradlew
@@ -0,0 +1,248 @@
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
+##############################################################################
+
+# Attempt to set APP_HOME
+
+# Resolve links: $0 may be a link
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
+done
+
+# This is normally unused
+# shellcheck disable=SC2034
+APP_BASE_NAME=${0##*/}
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD=maximum
+
+warn () {
+ echo "$*"
+} >&2
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+} >&2
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD=$JAVA_HOME/jre/sh/java
+ else
+ JAVACMD=$JAVA_HOME/bin/java
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD=java
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+fi
+
+# Increase the maximum file descriptors if we can.
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC3045
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC3045
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
+fi
+
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
+
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
+ fi
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
+ done
+fi
+
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Collect all arguments for the java command;
+# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
+# shell script including quotes and variable substitutions, so put them in
+# double quotes to make sure that they get re-expanded; and
+# * put everything else in single quotes, so that it's not re-expanded.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
diff --git a/packages/frontend/apps/android/App/gradlew.bat b/packages/frontend/apps/android/App/gradlew.bat
new file mode 100644
index 0000000000..93e3f59f13
--- /dev/null
+++ b/packages/frontend/apps/android/App/gradlew.bat
@@ -0,0 +1,92 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%"=="" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%"=="" set DIRNAME=.
+@rem This is normally unused
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if %ERRORLEVEL% equ 0 goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if %ERRORLEVEL% equ 0 goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/packages/frontend/apps/android/App/settings.gradle b/packages/frontend/apps/android/App/settings.gradle
new file mode 100644
index 0000000000..3b4431d772
--- /dev/null
+++ b/packages/frontend/apps/android/App/settings.gradle
@@ -0,0 +1,5 @@
+include ':app'
+include ':capacitor-cordova-android-plugins'
+project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/')
+
+apply from: 'capacitor.settings.gradle'
\ No newline at end of file
diff --git a/packages/frontend/apps/android/App/variables.gradle b/packages/frontend/apps/android/App/variables.gradle
new file mode 100644
index 0000000000..8ef305d0d2
--- /dev/null
+++ b/packages/frontend/apps/android/App/variables.gradle
@@ -0,0 +1,16 @@
+ext {
+ minSdkVersion = 22
+ compileSdkVersion = 34
+ targetSdkVersion = 34
+ androidxActivityVersion = '1.8.0'
+ androidxAppCompatVersion = '1.6.1'
+ androidxCoordinatorLayoutVersion = '1.2.0'
+ androidxCoreVersion = '1.12.0'
+ androidxFragmentVersion = '1.6.2'
+ coreSplashScreenVersion = '1.0.1'
+ androidxWebkitVersion = '1.9.0'
+ junitVersion = '4.13.2'
+ androidxJunitVersion = '1.1.5'
+ androidxEspressoCoreVersion = '3.5.1'
+ cordovaAndroidVersion = '10.1.1'
+}
\ No newline at end of file
diff --git a/packages/frontend/apps/android/README.md b/packages/frontend/apps/android/README.md
new file mode 100644
index 0000000000..4ff2a00916
--- /dev/null
+++ b/packages/frontend/apps/android/README.md
@@ -0,0 +1,10 @@
+# Android
+
+AFFiNE Android app.
+
+## Build
+
+- yarn install
+- BUILD_TYPE=canary PUBLIC_PATH="/" yarn workspace @affine/android build
+- yarn workspace @affine/android cap sync
+- yarn workspace @affine/android cap open android
diff --git a/packages/frontend/apps/android/capacitor.config.ts b/packages/frontend/apps/android/capacitor.config.ts
new file mode 100644
index 0000000000..3a5ef3c537
--- /dev/null
+++ b/packages/frontend/apps/android/capacitor.config.ts
@@ -0,0 +1,12 @@
+import type { CapacitorConfig } from '@capacitor/cli';
+
+const config: CapacitorConfig = {
+ appId: 'app.affine.pro',
+ appName: 'AFFiNE',
+ webDir: 'dist',
+ android: {
+ path: 'App',
+ },
+};
+
+export default config;
diff --git a/packages/frontend/apps/android/package.json b/packages/frontend/apps/android/package.json
new file mode 100644
index 0000000000..88a87ba311
--- /dev/null
+++ b/packages/frontend/apps/android/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "@affine/android",
+ "version": "0.17.0",
+ "description": "AFFiNE Desktop Web application",
+ "private": true,
+ "browser": "src/index.tsx",
+ "scripts": {
+ "build": "cross-env DISTRIBUTION=android yarn workspace @affine/cli bundle",
+ "dev": "yarn workspace @affine/cli dev",
+ "static-server": "cross-env DISTRIBUTION=android yarn workspace @affine/cli dev --static"
+ },
+ "dependencies": {
+ "@affine/component": "workspace:*",
+ "@affine/core": "workspace:*",
+ "@affine/i18n": "workspace:*",
+ "@blocksuite/affine": "0.17.19",
+ "@blocksuite/icons": "^2.1.67",
+ "@capacitor/android": "^6.1.2",
+ "@capacitor/core": "^6.1.2",
+ "@sentry/react": "^8.0.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-router-dom": "^6.26.1"
+ },
+ "devDependencies": {
+ "@capacitor/cli": "^6.1.2",
+ "@types/react": "^18.2.75",
+ "@types/react-dom": "^18.2.24",
+ "cross-env": "^7.0.3",
+ "typescript": "^5.4.5"
+ }
+}
diff --git a/packages/frontend/apps/android/project.json b/packages/frontend/apps/android/project.json
new file mode 100644
index 0000000000..a3efc02cc1
--- /dev/null
+++ b/packages/frontend/apps/android/project.json
@@ -0,0 +1,69 @@
+{
+ "name": "@affine/android",
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
+ "targets": {
+ "build": {
+ "executor": "nx:run-script",
+ "dependsOn": [
+ {
+ "projects": ["tag:infra"],
+ "target": "build",
+ "params": "ignore"
+ },
+ "^build"
+ ],
+ "inputs": [
+ "{projectRoot}/**/*",
+ "{workspaceRoot}/tools/**/*",
+ "{workspaceRoot}/packages/frontend/core/**/*",
+ "{workspaceRoot}/packages/**/*",
+ {
+ "env": "BUILD_TYPE"
+ },
+ {
+ "env": "BUILD_TYPE_OVERRIDE"
+ },
+ {
+ "env": "PERFSEE_TOKEN"
+ },
+ {
+ "env": "SENTRY_ORG"
+ },
+ {
+ "env": "SENTRY_PROJECT"
+ },
+ {
+ "env": "SENTRY_AUTH_TOKEN"
+ },
+ {
+ "env": "SENTRY_DSN"
+ },
+ {
+ "env": "DISTRIBUTION"
+ },
+ {
+ "env": "COVERAGE"
+ },
+ {
+ "env": "DISABLE_DEV_OVERLAY"
+ },
+ {
+ "env": "CAPTCHA_SITE_KEY"
+ },
+ {
+ "env": "R2_ACCOUNT_ID"
+ },
+ {
+ "env": "R2_ACCESS_KEY_ID"
+ },
+ {
+ "env": "R2_SECRET_ACCESS_KEY"
+ }
+ ],
+ "options": {
+ "script": "build"
+ },
+ "outputs": ["{projectRoot}/dist"]
+ }
+ }
+}
diff --git a/packages/frontend/apps/android/src/app.tsx b/packages/frontend/apps/android/src/app.tsx
new file mode 100644
index 0000000000..4f88ff26cc
--- /dev/null
+++ b/packages/frontend/apps/android/src/app.tsx
@@ -0,0 +1,61 @@
+import { AffineContext } from '@affine/component/context';
+import { AppFallback } from '@affine/core/components/affine/app-container';
+import { Telemetry } from '@affine/core/components/telemetry';
+import { configureMobileModules } from '@affine/core/mobile/modules';
+import { router } from '@affine/core/mobile/router';
+import { configureCommonModules } from '@affine/core/modules';
+import { I18nProvider } from '@affine/core/modules/i18n';
+import { configureLocalStorageStateStorageImpls } from '@affine/core/modules/storage';
+import { configureIndexedDBUserspaceStorageProvider } from '@affine/core/modules/userspace';
+import { configureBrowserWorkbenchModule } from '@affine/core/modules/workbench';
+import {
+ configureBrowserWorkspaceFlavours,
+ configureIndexedDBWorkspaceEngineStorageProvider,
+} from '@affine/core/modules/workspace-engine';
+import {
+ Framework,
+ FrameworkRoot,
+ getCurrentStore,
+ LifecycleService,
+} from '@toeverything/infra';
+import { Suspense } from 'react';
+import { RouterProvider } from 'react-router-dom';
+
+const future = {
+ v7_startTransition: true,
+} as const;
+
+const framework = new Framework();
+configureCommonModules(framework);
+configureBrowserWorkbenchModule(framework);
+configureLocalStorageStateStorageImpls(framework);
+configureBrowserWorkspaceFlavours(framework);
+configureIndexedDBWorkspaceEngineStorageProvider(framework);
+configureIndexedDBUserspaceStorageProvider(framework);
+configureMobileModules(framework);
+const frameworkProvider = framework.provider();
+
+// setup application lifecycle events, and emit application start event
+window.addEventListener('focus', () => {
+ frameworkProvider.get(LifecycleService).applicationFocus();
+});
+frameworkProvider.get(LifecycleService).applicationStart();
+
+export function App() {
+ return (
+
+
+
+
+
+ }
+ router={router}
+ future={future}
+ />
+
+
+
+
+ );
+}
diff --git a/packages/frontend/apps/android/src/index.tsx b/packages/frontend/apps/android/src/index.tsx
new file mode 100644
index 0000000000..4d279a07a5
--- /dev/null
+++ b/packages/frontend/apps/android/src/index.tsx
@@ -0,0 +1,57 @@
+import './setup';
+
+import {
+ init,
+ reactRouterV6BrowserTracingIntegration,
+ setTags,
+} from '@sentry/react';
+import { StrictMode, useEffect } from 'react';
+import { createRoot } from 'react-dom/client';
+import {
+ createRoutesFromChildren,
+ matchRoutes,
+ useLocation,
+ useNavigationType,
+} from 'react-router-dom';
+
+import { App } from './app';
+
+function main() {
+ if (BUILD_CONFIG.debug || window.SENTRY_RELEASE) {
+ // https://docs.sentry.io/platforms/javascript/guides/react/#configure
+ init({
+ dsn: process.env.SENTRY_DSN,
+ environment: process.env.BUILD_TYPE ?? 'development',
+ integrations: [
+ reactRouterV6BrowserTracingIntegration({
+ useEffect,
+ useLocation,
+ useNavigationType,
+ createRoutesFromChildren,
+ matchRoutes,
+ }),
+ ],
+ });
+ setTags({
+ appVersion: BUILD_CONFIG.appVersion,
+ editorVersion: BUILD_CONFIG.editorVersion,
+ });
+ }
+ mountApp();
+}
+
+function mountApp() {
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
+ const root = document.getElementById('app')!;
+ createRoot(root).render(
+
+
+
+ );
+}
+
+try {
+ main();
+} catch (err) {
+ console.error('Failed to bootstrap app', err);
+}
diff --git a/packages/frontend/apps/android/src/setup.ts b/packages/frontend/apps/android/src/setup.ts
new file mode 100644
index 0000000000..27bd3f4671
--- /dev/null
+++ b/packages/frontend/apps/android/src/setup.ts
@@ -0,0 +1,3 @@
+import '@affine/core/bootstrap/browser';
+import '@affine/component/theme';
+import '@affine/core/mobile/styles/mobile.css';
diff --git a/packages/frontend/apps/android/tsconfig.json b/packages/frontend/apps/android/tsconfig.json
new file mode 100644
index 0000000000..0bb809226a
--- /dev/null
+++ b/packages/frontend/apps/android/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "extends": "../../../../tsconfig.json",
+ "compilerOptions": {
+ "composite": true,
+ "outDir": "lib",
+ "moduleResolution": "Bundler",
+ "types": ["affine__env"],
+ "rootDir": "./src"
+ },
+ "include": ["./src"],
+ "references": [{ "path": "../../core" }]
+}
diff --git a/packages/frontend/apps/ios/.gitignore b/packages/frontend/apps/ios/.gitignore
new file mode 100644
index 0000000000..b5ddda903f
--- /dev/null
+++ b/packages/frontend/apps/ios/.gitignore
@@ -0,0 +1,19 @@
+App/build
+App/Pods
+App/output
+App/App/public
+DerivedData
+xcuserdata
+
+# Cordova plugins for Capacitor
+capacitor-cordova-ios-plugins
+
+# Generated Config files
+App/App/capacitor.config.json
+App/App/config.xml
+App/**/*.p8
+*.mobileprovision
+*.ipa
+*.zip
+*.cer
+App/fastlane/report.xml
diff --git a/packages/frontend/apps/ios/App/App.xcodeproj/project.pbxproj b/packages/frontend/apps/ios/App/App.xcodeproj/project.pbxproj
new file mode 100644
index 0000000000..26abac0da3
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App.xcodeproj/project.pbxproj
@@ -0,0 +1,426 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 56;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; };
+ 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; };
+ 504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; };
+ 504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
+ 504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
+ 50B271D11FEDC1A000F3C39B /* public in Resources */ = {isa = PBXBuildFile; fileRef = 50B271D01FEDC1A000F3C39B /* public */; };
+ C4C413792CBE705D00337889 /* Pods_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+ 2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = ""; };
+ 50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = ""; };
+ 504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ 50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = ""; };
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = ""; };
+ FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 504EC3011FED79650016851F /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ C4C413792CBE705D00337889 /* Pods_App.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 504EC2FB1FED79650016851F = {
+ isa = PBXGroup;
+ children = (
+ 504EC3061FED79650016851F /* App */,
+ 504EC3051FED79650016851F /* Products */,
+ 7F8756D8B27F46E3366F6CEA /* Pods */,
+ 27E2DDA53C4D2A4D1A88CE4A /* Frameworks */,
+ );
+ indentWidth = 2;
+ sourceTree = "";
+ tabWidth = 2;
+ };
+ 504EC3051FED79650016851F /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 504EC3041FED79650016851F /* App.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 504EC3061FED79650016851F /* App */ = {
+ isa = PBXGroup;
+ children = (
+ 50379B222058CBB4000EE86E /* capacitor.config.json */,
+ 504EC3071FED79650016851F /* AppDelegate.swift */,
+ 504EC30B1FED79650016851F /* Main.storyboard */,
+ 504EC30E1FED79650016851F /* Assets.xcassets */,
+ 504EC3131FED79650016851F /* Info.plist */,
+ 2FAD9762203C412B000D30F8 /* config.xml */,
+ 50B271D01FEDC1A000F3C39B /* public */,
+ );
+ path = App;
+ sourceTree = "";
+ };
+ 7F8756D8B27F46E3366F6CEA /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */,
+ AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */,
+ );
+ name = Pods;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 504EC3031FED79650016851F /* App */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
+ buildPhases = (
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */,
+ 504EC3001FED79650016851F /* Sources */,
+ 504EC3011FED79650016851F /* Frameworks */,
+ 504EC3021FED79650016851F /* Resources */,
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = App;
+ productName = App;
+ productReference = 504EC3041FED79650016851F /* App.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 504EC2FC1FED79650016851F /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastSwiftUpdateCheck = 0920;
+ LastUpgradeCheck = 0920;
+ TargetAttributes = {
+ 504EC3031FED79650016851F = {
+ CreatedOnToolsVersion = 9.2;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
+ compatibilityVersion = "Xcode 14.0";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 504EC2FB1FED79650016851F;
+ productRefGroup = 504EC3051FED79650016851F /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 504EC3031FED79650016851F /* App */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 504EC3021FED79650016851F /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 50B271D11FEDC1A000F3C39B /* public in Resources */,
+ 504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
+ 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
+ 504EC30D1FED79650016851F /* Main.storyboard in Resources */,
+ 2FAD9763203C412B000D30F8 /* config.xml in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 504EC3001FED79650016851F /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+ 504EC30B1FED79650016851F /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 504EC30C1FED79650016851F /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 504EC3141FED79650016851F /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "Apple Distribution: TOEVERYTHING PTE. LTD. (73YMMDVT2M)";
+ CODE_SIGN_STYLE = Manual;
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ DEVELOPMENT_TEAM = 73YMMDVT2M;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 17.6;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ };
+ name = Debug;
+ };
+ 504EC3151FED79650016851F /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "Apple Distribution: TOEVERYTHING PTE. LTD. (73YMMDVT2M)";
+ CODE_SIGN_STYLE = Manual;
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ DEVELOPMENT_TEAM = 73YMMDVT2M;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 17.6;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 504EC3171FED79650016851F /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CODE_SIGN_IDENTITY = "Apple Distribution: TOEVERYTHING PTE. LTD. (73YMMDVT2M)";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_PROJECT_VERSION = 10;
+ DEVELOPMENT_TEAM = 73YMMDVT2M;
+ "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 73YMMDVT2M;
+ INFOPLIST_FILE = App/Info.plist;
+ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
+ IPHONEOS_DEPLOYMENT_TARGET = 16.6;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
+ PRODUCT_BUNDLE_IDENTIFIER = app.affine.pro;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "AppStore app.affine.pro";
+ "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "AppStore app.affine.pro";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ XROS_DEPLOYMENT_TARGET = 2.0;
+ };
+ name = Debug;
+ };
+ 504EC3181FED79650016851F /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CODE_SIGN_IDENTITY = "Apple Distribution: TOEVERYTHING PTE. LTD. (73YMMDVT2M)";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_PROJECT_VERSION = 10;
+ DEVELOPMENT_TEAM = 73YMMDVT2M;
+ "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 73YMMDVT2M;
+ INFOPLIST_FILE = App/Info.plist;
+ INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
+ IPHONEOS_DEPLOYMENT_TARGET = 16.6;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ ONLY_ACTIVE_ARCH = NO;
+ PRODUCT_BUNDLE_IDENTIFIER = app.affine.pro;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "AppStore app.affine.pro";
+ "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "AppStore app.affine.pro";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ XROS_DEPLOYMENT_TARGET = 2.0;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 504EC3141FED79650016851F /* Debug */,
+ 504EC3151FED79650016851F /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 504EC3171FED79650016851F /* Debug */,
+ 504EC3181FED79650016851F /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 504EC2FC1FED79650016851F /* Project object */;
+}
diff --git a/packages/frontend/apps/ios/App/App.xcworkspace/contents.xcworkspacedata b/packages/frontend/apps/ios/App/App.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000000..b301e824b3
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/packages/frontend/apps/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/frontend/apps/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000000..18d981003d
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/packages/frontend/apps/ios/App/App/AppDelegate.swift b/packages/frontend/apps/ios/App/App/AppDelegate.swift
new file mode 100644
index 0000000000..c3cd83b5c0
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/AppDelegate.swift
@@ -0,0 +1,49 @@
+import UIKit
+import Capacitor
+
+@UIApplicationMain
+class AppDelegate: UIResponder, UIApplicationDelegate {
+
+ var window: UIWindow?
+
+ func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
+ // Override point for customization after application launch.
+ return true
+ }
+
+ func applicationWillResignActive(_ application: UIApplication) {
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
+ // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
+ }
+
+ func applicationDidEnterBackground(_ application: UIApplication) {
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
+ }
+
+ func applicationWillEnterForeground(_ application: UIApplication) {
+ // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
+ }
+
+ func applicationDidBecomeActive(_ application: UIApplication) {
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
+ }
+
+ func applicationWillTerminate(_ application: UIApplication) {
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
+ }
+
+ func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
+ // Called when the app was launched with a url. Feel free to add additional processing here,
+ // but if you want the App API to support tracking app url opens, make sure to keep this call
+ return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
+ }
+
+ func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
+ // Called when the app was launched with an activity, including Universal Links.
+ // Feel free to add additional processing here, but if you want the App API to support
+ // tracking app url opens, make sure to keep this call
+ return ApplicationDelegateProxy.shared.application(application, continue: userActivity, restorationHandler: restorationHandler)
+ }
+
+}
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000000..aa3903cc33
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,38 @@
+{
+ "images": [
+ {
+ "filename": "light.png",
+ "idiom": "universal",
+ "platform": "ios",
+ "size": "1024x1024"
+ },
+ {
+ "appearances": [
+ {
+ "appearance": "luminosity",
+ "value": "dark"
+ }
+ ],
+ "filename": "dark.png",
+ "idiom": "universal",
+ "platform": "ios",
+ "size": "1024x1024"
+ },
+ {
+ "appearances": [
+ {
+ "appearance": "luminosity",
+ "value": "tinted"
+ }
+ ],
+ "filename": "dark@trans.png",
+ "idiom": "universal",
+ "platform": "ios",
+ "size": "1024x1024"
+ }
+ ],
+ "info": {
+ "author": "xcode",
+ "version": 1
+ }
+}
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark.png
new file mode 100644
index 0000000000..b461ab071d
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark@trans.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark@trans.png
new file mode 100644
index 0000000000..30570dfc10
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/dark@trans.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/light.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/light.png
new file mode 100644
index 0000000000..ac49d36ae3
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/AppIcon.appiconset/light.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Contents.json b/packages/frontend/apps/ios/App/App/Assets.xcassets/Contents.json
new file mode 100644
index 0000000000..74d6a722cf
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info": {
+ "author": "xcode",
+ "version": 1
+ }
+}
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
new file mode 100644
index 0000000000..5434b10cfe
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
@@ -0,0 +1,56 @@
+{
+ "images": [
+ {
+ "filename": "affine@png-3.png",
+ "idiom": "universal",
+ "scale": "1x"
+ },
+ {
+ "appearances": [
+ {
+ "appearance": "luminosity",
+ "value": "dark"
+ }
+ ],
+ "filename": "dark@128.png",
+ "idiom": "universal",
+ "scale": "1x"
+ },
+ {
+ "filename": "affine@png-2.png",
+ "idiom": "universal",
+ "scale": "2x"
+ },
+ {
+ "appearances": [
+ {
+ "appearance": "luminosity",
+ "value": "dark"
+ }
+ ],
+ "filename": "dark@256.png",
+ "idiom": "universal",
+ "scale": "2x"
+ },
+ {
+ "filename": "affine@png-1.png",
+ "idiom": "universal",
+ "scale": "3x"
+ },
+ {
+ "appearances": [
+ {
+ "appearance": "luminosity",
+ "value": "dark"
+ }
+ ],
+ "filename": "dark@512.png",
+ "idiom": "universal",
+ "scale": "3x"
+ }
+ ],
+ "info": {
+ "author": "xcode",
+ "version": 1
+ }
+}
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-1.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-1.png
new file mode 100644
index 0000000000..5d48af267e
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-1.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-2.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-2.png
new file mode 100644
index 0000000000..3db606e3d1
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-2.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-3.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-3.png
new file mode 100644
index 0000000000..dfaa87a478
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/affine@png-3.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@128.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@128.png
new file mode 100644
index 0000000000..6a58f16719
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@128.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@256.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@256.png
new file mode 100644
index 0000000000..e24ba9c0fd
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@256.png differ
diff --git a/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@512.png b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@512.png
new file mode 100644
index 0000000000..45f30aefe8
Binary files /dev/null and b/packages/frontend/apps/ios/App/App/Assets.xcassets/Splash.imageset/dark@512.png differ
diff --git a/packages/frontend/apps/ios/App/App/Base.lproj/Main.storyboard b/packages/frontend/apps/ios/App/App/Base.lproj/Main.storyboard
new file mode 100644
index 0000000000..b44df7be8f
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/Base.lproj/Main.storyboard
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/frontend/apps/ios/App/App/Info.plist b/packages/frontend/apps/ios/App/App/Info.plist
new file mode 100644
index 0000000000..e59b9163f5
--- /dev/null
+++ b/packages/frontend/apps/ios/App/App/Info.plist
@@ -0,0 +1,54 @@
+
+
+
+
+ ITSAppUsesNonExemptEncryption
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ AFFiNE
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(MARKETING_VERSION)
+ CFBundleVersion
+ 10
+ LSRequiresIPhoneOS
+
+ UILaunchScreen
+
+ UIImageName
+ Splash
+
+ UIMainStoryboardFile
+ Main
+ UIRequiredDeviceCapabilities
+
+ armv7
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+
+
diff --git a/packages/frontend/apps/ios/App/Gemfile b/packages/frontend/apps/ios/App/Gemfile
new file mode 100644
index 0000000000..7a118b49be
--- /dev/null
+++ b/packages/frontend/apps/ios/App/Gemfile
@@ -0,0 +1,3 @@
+source "https://rubygems.org"
+
+gem "fastlane"
diff --git a/packages/frontend/apps/ios/App/Podfile b/packages/frontend/apps/ios/App/Podfile
new file mode 100644
index 0000000000..42b9c05276
--- /dev/null
+++ b/packages/frontend/apps/ios/App/Podfile
@@ -0,0 +1,24 @@
+require_relative '../../../../../node_modules/@capacitor/ios/scripts/pods_helpers'
+
+platform :ios, '13.0'
+use_frameworks!
+
+# workaround to avoid Xcode caching of Pods that requires
+# Product -> Clean Build Folder after new Cordova plugins installed
+# Requires CocoaPods 1.6 or newer
+install! 'cocoapods', :disable_input_output_paths => true
+
+def capacitor_pods
+ pod 'Capacitor', :path => '../../../../../node_modules/@capacitor/ios'
+ pod 'CapacitorCordova', :path => '../../../../../node_modules/@capacitor/ios'
+
+end
+
+target 'App' do
+ capacitor_pods
+ # Add your Pods here
+end
+
+post_install do |installer|
+ assertDeploymentTarget(installer)
+end
diff --git a/packages/frontend/apps/ios/App/Podfile.lock b/packages/frontend/apps/ios/App/Podfile.lock
new file mode 100644
index 0000000000..8d5b740a1c
--- /dev/null
+++ b/packages/frontend/apps/ios/App/Podfile.lock
@@ -0,0 +1,22 @@
+PODS:
+ - Capacitor (6.1.2):
+ - CapacitorCordova
+ - CapacitorCordova (6.1.2)
+
+DEPENDENCIES:
+ - "Capacitor (from `../../../../../node_modules/@capacitor/ios`)"
+ - "CapacitorCordova (from `../../../../../node_modules/@capacitor/ios`)"
+
+EXTERNAL SOURCES:
+ Capacitor:
+ :path: "../../../../../node_modules/@capacitor/ios"
+ CapacitorCordova:
+ :path: "../../../../../node_modules/@capacitor/ios"
+
+SPEC CHECKSUMS:
+ Capacitor: 679f9673fdf30597493a6362a5d5bf233d46abc2
+ CapacitorCordova: f48c89f96c319101cd2f0ce8a2b7449b5fb8b3dd
+
+PODFILE CHECKSUM: 54b94ef731578bd3a2af3619f2a5a0589e32dea5
+
+COCOAPODS: 1.15.2
diff --git a/packages/frontend/apps/ios/App/fastlane/Appfile b/packages/frontend/apps/ios/App/fastlane/Appfile
new file mode 100644
index 0000000000..833a92aefd
--- /dev/null
+++ b/packages/frontend/apps/ios/App/fastlane/Appfile
@@ -0,0 +1,8 @@
+app_identifier("app.affine.pro") # The bundle identifier of your app
+apple_id("yinan.long@toeverything.info") # Your Apple Developer Portal username
+
+itc_team_id("126219637") # App Store Connect Team ID
+team_id("73YMMDVT2M") # Developer Portal Team ID
+
+# For more information about the Appfile, see:
+# https://docs.fastlane.tools/advanced/#appfile
diff --git a/packages/frontend/apps/ios/App/fastlane/Fastfile b/packages/frontend/apps/ios/App/fastlane/Fastfile
new file mode 100644
index 0000000000..4449982f39
--- /dev/null
+++ b/packages/frontend/apps/ios/App/fastlane/Fastfile
@@ -0,0 +1,36 @@
+# This file contains the fastlane.tools configuration
+# You can find the documentation at https://docs.fastlane.tools
+#
+# For a list of all available actions, check out
+#
+# https://docs.fastlane.tools/actions
+#
+# For a list of all available plugins, check out
+#
+# https://docs.fastlane.tools/plugins/available-plugins
+#
+
+# Uncomment the line if you want fastlane to automatically update itself
+# update_fastlane
+
+default_platform(:ios)
+
+platform :ios do
+ desc "Push a new beta build to TestFlight"
+ lane :beta do
+ api_key = app_store_connect_api_key(
+ key_id: ENV['APPLE_STORE_CONNECT_API_KEY_ID'],
+ issuer_id: ENV['APPLE_STORE_CONNECT_API_ISSUER_ID'],
+ key_content: ENV['APPLE_STORE_CONNECT_API_KEY'],
+ is_key_content_base64: true,
+ duration: 1200, # optional (maximum 1200)
+ in_house: false # optional but may be required if using match/sigh
+ )
+ increment_build_number(xcodeproj: "App.xcodeproj")
+ build_app(
+ workspace: "App.xcworkspace",
+ scheme: "App"
+ )
+ upload_to_testflight(skip_waiting_for_build_processing: true, api_key: api_key) if ENV['BUILD_TARGET'] == 'distribution'
+ end
+end
diff --git a/packages/frontend/apps/ios/App/fastlane/README.md b/packages/frontend/apps/ios/App/fastlane/README.md
new file mode 100644
index 0000000000..e5d64d5c74
--- /dev/null
+++ b/packages/frontend/apps/ios/App/fastlane/README.md
@@ -0,0 +1,31 @@
+## fastlane documentation
+
+# Installation
+
+Make sure you have the latest version of the Xcode command line tools installed:
+
+```sh
+xcode-select --install
+```
+
+For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
+
+# Available Actions
+
+## iOS
+
+### ios beta
+
+```sh
+[bundle exec] fastlane ios beta
+```
+
+Push a new beta build to TestFlight
+
+---
+
+This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
+
+More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
+
+The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
diff --git a/packages/frontend/apps/ios/README.md b/packages/frontend/apps/ios/README.md
new file mode 100644
index 0000000000..2f4450696f
--- /dev/null
+++ b/packages/frontend/apps/ios/README.md
@@ -0,0 +1,10 @@
+# iOS
+
+AFFiNE iOS app.
+
+## Build
+
+- yarn install
+- BUILD_TYPE=canary PUBLIC_PATH="/" yarn workspace @affine/ios build
+- yarn workspace @affine/ios cap sync
+- yarn workspace @affine/ios cap open ios
diff --git a/packages/frontend/apps/ios/capacitor.config.ts b/packages/frontend/apps/ios/capacitor.config.ts
new file mode 100644
index 0000000000..56eee290e6
--- /dev/null
+++ b/packages/frontend/apps/ios/capacitor.config.ts
@@ -0,0 +1,12 @@
+import type { CapacitorConfig } from '@capacitor/cli';
+
+const config: CapacitorConfig = {
+ appId: 'app.affine.pro',
+ appName: 'AFFiNE',
+ webDir: 'dist',
+ ios: {
+ path: '.',
+ },
+};
+
+export default config;
diff --git a/packages/frontend/apps/ios/package.json b/packages/frontend/apps/ios/package.json
new file mode 100644
index 0000000000..9f9fd1cbfa
--- /dev/null
+++ b/packages/frontend/apps/ios/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "@affine/ios",
+ "version": "0.17.0",
+ "description": "AFFiNE Desktop Web application",
+ "private": true,
+ "browser": "src/index.tsx",
+ "scripts": {
+ "build": "cross-env DISTRIBUTION=ios yarn workspace @affine/cli bundle",
+ "dev": "yarn workspace @affine/cli dev",
+ "static-server": "cross-env DISTRIBUTION=ios yarn workspace @affine/cli dev --static"
+ },
+ "dependencies": {
+ "@affine/component": "workspace:*",
+ "@affine/core": "workspace:*",
+ "@affine/i18n": "workspace:*",
+ "@blocksuite/affine": "0.17.19",
+ "@blocksuite/icons": "^2.1.67",
+ "@capacitor/core": "^6.1.2",
+ "@capacitor/ios": "^6.1.2",
+ "@sentry/react": "^8.0.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-router-dom": "^6.26.1"
+ },
+ "devDependencies": {
+ "@capacitor/cli": "^6.1.2",
+ "@types/react": "^18.2.75",
+ "@types/react-dom": "^18.2.24",
+ "cross-env": "^7.0.3",
+ "typescript": "^5.4.5"
+ }
+}
diff --git a/packages/frontend/apps/ios/project.json b/packages/frontend/apps/ios/project.json
new file mode 100644
index 0000000000..1f61de93e1
--- /dev/null
+++ b/packages/frontend/apps/ios/project.json
@@ -0,0 +1,69 @@
+{
+ "name": "@affine/ios",
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
+ "targets": {
+ "build": {
+ "executor": "nx:run-script",
+ "dependsOn": [
+ {
+ "projects": ["tag:infra"],
+ "target": "build",
+ "params": "ignore"
+ },
+ "^build"
+ ],
+ "inputs": [
+ "{projectRoot}/**/*",
+ "{workspaceRoot}/tools/**/*",
+ "{workspaceRoot}/packages/frontend/core/**/*",
+ "{workspaceRoot}/packages/**/*",
+ {
+ "env": "BUILD_TYPE"
+ },
+ {
+ "env": "BUILD_TYPE_OVERRIDE"
+ },
+ {
+ "env": "PERFSEE_TOKEN"
+ },
+ {
+ "env": "SENTRY_ORG"
+ },
+ {
+ "env": "SENTRY_PROJECT"
+ },
+ {
+ "env": "SENTRY_AUTH_TOKEN"
+ },
+ {
+ "env": "SENTRY_DSN"
+ },
+ {
+ "env": "DISTRIBUTION"
+ },
+ {
+ "env": "COVERAGE"
+ },
+ {
+ "env": "DISABLE_DEV_OVERLAY"
+ },
+ {
+ "env": "CAPTCHA_SITE_KEY"
+ },
+ {
+ "env": "R2_ACCOUNT_ID"
+ },
+ {
+ "env": "R2_ACCESS_KEY_ID"
+ },
+ {
+ "env": "R2_SECRET_ACCESS_KEY"
+ }
+ ],
+ "options": {
+ "script": "build"
+ },
+ "outputs": ["{projectRoot}/dist"]
+ }
+ }
+}
diff --git a/packages/frontend/apps/ios/src/app.tsx b/packages/frontend/apps/ios/src/app.tsx
new file mode 100644
index 0000000000..4f88ff26cc
--- /dev/null
+++ b/packages/frontend/apps/ios/src/app.tsx
@@ -0,0 +1,61 @@
+import { AffineContext } from '@affine/component/context';
+import { AppFallback } from '@affine/core/components/affine/app-container';
+import { Telemetry } from '@affine/core/components/telemetry';
+import { configureMobileModules } from '@affine/core/mobile/modules';
+import { router } from '@affine/core/mobile/router';
+import { configureCommonModules } from '@affine/core/modules';
+import { I18nProvider } from '@affine/core/modules/i18n';
+import { configureLocalStorageStateStorageImpls } from '@affine/core/modules/storage';
+import { configureIndexedDBUserspaceStorageProvider } from '@affine/core/modules/userspace';
+import { configureBrowserWorkbenchModule } from '@affine/core/modules/workbench';
+import {
+ configureBrowserWorkspaceFlavours,
+ configureIndexedDBWorkspaceEngineStorageProvider,
+} from '@affine/core/modules/workspace-engine';
+import {
+ Framework,
+ FrameworkRoot,
+ getCurrentStore,
+ LifecycleService,
+} from '@toeverything/infra';
+import { Suspense } from 'react';
+import { RouterProvider } from 'react-router-dom';
+
+const future = {
+ v7_startTransition: true,
+} as const;
+
+const framework = new Framework();
+configureCommonModules(framework);
+configureBrowserWorkbenchModule(framework);
+configureLocalStorageStateStorageImpls(framework);
+configureBrowserWorkspaceFlavours(framework);
+configureIndexedDBWorkspaceEngineStorageProvider(framework);
+configureIndexedDBUserspaceStorageProvider(framework);
+configureMobileModules(framework);
+const frameworkProvider = framework.provider();
+
+// setup application lifecycle events, and emit application start event
+window.addEventListener('focus', () => {
+ frameworkProvider.get(LifecycleService).applicationFocus();
+});
+frameworkProvider.get(LifecycleService).applicationStart();
+
+export function App() {
+ return (
+
+
+
+
+
+ }
+ router={router}
+ future={future}
+ />
+
+
+
+
+ );
+}
diff --git a/packages/frontend/apps/ios/src/index.tsx b/packages/frontend/apps/ios/src/index.tsx
new file mode 100644
index 0000000000..4d279a07a5
--- /dev/null
+++ b/packages/frontend/apps/ios/src/index.tsx
@@ -0,0 +1,57 @@
+import './setup';
+
+import {
+ init,
+ reactRouterV6BrowserTracingIntegration,
+ setTags,
+} from '@sentry/react';
+import { StrictMode, useEffect } from 'react';
+import { createRoot } from 'react-dom/client';
+import {
+ createRoutesFromChildren,
+ matchRoutes,
+ useLocation,
+ useNavigationType,
+} from 'react-router-dom';
+
+import { App } from './app';
+
+function main() {
+ if (BUILD_CONFIG.debug || window.SENTRY_RELEASE) {
+ // https://docs.sentry.io/platforms/javascript/guides/react/#configure
+ init({
+ dsn: process.env.SENTRY_DSN,
+ environment: process.env.BUILD_TYPE ?? 'development',
+ integrations: [
+ reactRouterV6BrowserTracingIntegration({
+ useEffect,
+ useLocation,
+ useNavigationType,
+ createRoutesFromChildren,
+ matchRoutes,
+ }),
+ ],
+ });
+ setTags({
+ appVersion: BUILD_CONFIG.appVersion,
+ editorVersion: BUILD_CONFIG.editorVersion,
+ });
+ }
+ mountApp();
+}
+
+function mountApp() {
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
+ const root = document.getElementById('app')!;
+ createRoot(root).render(
+
+
+
+ );
+}
+
+try {
+ main();
+} catch (err) {
+ console.error('Failed to bootstrap app', err);
+}
diff --git a/packages/frontend/apps/ios/src/setup.ts b/packages/frontend/apps/ios/src/setup.ts
new file mode 100644
index 0000000000..27bd3f4671
--- /dev/null
+++ b/packages/frontend/apps/ios/src/setup.ts
@@ -0,0 +1,3 @@
+import '@affine/core/bootstrap/browser';
+import '@affine/component/theme';
+import '@affine/core/mobile/styles/mobile.css';
diff --git a/packages/frontend/apps/ios/tsconfig.json b/packages/frontend/apps/ios/tsconfig.json
new file mode 100644
index 0000000000..0bb809226a
--- /dev/null
+++ b/packages/frontend/apps/ios/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "extends": "../../../../tsconfig.json",
+ "compilerOptions": {
+ "composite": true,
+ "outDir": "lib",
+ "moduleResolution": "Bundler",
+ "types": ["affine__env"],
+ "rootDir": "./src"
+ },
+ "include": ["./src"],
+ "references": [{ "path": "../../core" }]
+}
diff --git a/packages/frontend/i18n/src/resources/zh-Hans.json b/packages/frontend/i18n/src/resources/zh-Hans.json
index d4e10b83c3..384d7d7fa2 100644
--- a/packages/frontend/i18n/src/resources/zh-Hans.json
+++ b/packages/frontend/i18n/src/resources/zh-Hans.json
@@ -441,6 +441,9 @@
"com.affine.empty.docs.trash-description": "已删除的文档将显示在此处。",
"com.affine.empty.tags.description": "为您的文档创建一个新标签。",
"com.affine.empty.tags.title": "标签管理",
+ "com.affine.editorDefaultMode.edgeless": "默认为无界模式",
+ "com.affine.editorDefaultMode.page": "默认为文档模式",
+ "com.affine.editor.reference-not-found": "未找到已链接的文档",
"com.affine.emptyDesc": "这里还没有文档",
"com.affine.enableAffineCloudModal.button.cancel": "取消",
"com.affine.error.hide-error": "隐藏错误详情",
@@ -1214,6 +1217,10 @@
"com.affine.toastMessage.rename": "更名成功",
"com.affine.toastMessage.restored": "{{title}} 已恢复",
"com.affine.toastMessage.successfullyDeleted": "删除成功",
+ "com.affine.toastMessage.defaultMode.page.title": "默认模式已更改",
+ "com.affine.toastMessage.defaultMode.page.message": "该文档的默认模式已更改为页面模式",
+ "com.affine.toastMessage.defaultMode.edgeless.title": "默认模式已更改",
+ "com.affine.toastMessage.defaultMode.edgeless.message": "该文档的默认模式已更改为无界模式",
"com.affine.today": "今天",
"com.affine.tomorrow": "明日",
"com.affine.top-tip.mobile": "在移动设备上仅限于查看。",
diff --git a/tools/cli/src/config/cwd.cjs b/tools/cli/src/config/cwd.cjs
index 2c3006d23f..b01b774455 100644
--- a/tools/cli/src/config/cwd.cjs
+++ b/tools/cli/src/config/cwd.cjs
@@ -25,6 +25,10 @@ module.exports.getCwdFromDistribution = function getCwdFromDistribution(
return join(projectRoot, 'packages/frontend/admin');
case 'mobile':
return join(projectRoot, 'packages/frontend/apps/mobile');
+ case 'ios':
+ return join(projectRoot, 'packages/frontend/apps/ios');
+ case 'android':
+ return join(projectRoot, 'packages/frontend/apps/android');
default: {
throw new Error(
'DISTRIBUTION must be one of web, desktop, admin, mobile'
diff --git a/tsconfig.json b/tsconfig.json
index fdfe414416..b99aa56c11 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -103,6 +103,12 @@
{
"path": "./packages/frontend/apps/mobile"
},
+ {
+ "path": "./packages/frontend/apps/ios"
+ },
+ {
+ "path": "./packages/frontend/apps/android"
+ },
{
"path": "./packages/frontend/apps/electron/tsconfig.test.json"
},
diff --git a/yarn.lock b/yarn.lock
index 28820881df..78dbdabfd5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -206,6 +206,29 @@ __metadata:
languageName: unknown
linkType: soft
+"@affine/android@workspace:packages/frontend/apps/android":
+ version: 0.0.0-use.local
+ resolution: "@affine/android@workspace:packages/frontend/apps/android"
+ dependencies:
+ "@affine/component": "workspace:*"
+ "@affine/core": "workspace:*"
+ "@affine/i18n": "workspace:*"
+ "@blocksuite/affine": "npm:0.17.19"
+ "@blocksuite/icons": "npm:^2.1.67"
+ "@capacitor/android": "npm:^6.1.2"
+ "@capacitor/cli": "npm:^6.1.2"
+ "@capacitor/core": "npm:^6.1.2"
+ "@sentry/react": "npm:^8.0.0"
+ "@types/react": "npm:^18.2.75"
+ "@types/react-dom": "npm:^18.2.24"
+ cross-env: "npm:^7.0.3"
+ react: "npm:^18.2.0"
+ react-dom: "npm:^18.2.0"
+ react-router-dom: "npm:^6.26.1"
+ typescript: "npm:^5.4.5"
+ languageName: unknown
+ linkType: soft
+
"@affine/bump-blocksuite@workspace:tools/bump-blocksuite":
version: 0.0.0-use.local
resolution: "@affine/bump-blocksuite@workspace:tools/bump-blocksuite"
@@ -564,6 +587,29 @@ __metadata:
languageName: unknown
linkType: soft
+"@affine/ios@workspace:packages/frontend/apps/ios":
+ version: 0.0.0-use.local
+ resolution: "@affine/ios@workspace:packages/frontend/apps/ios"
+ dependencies:
+ "@affine/component": "workspace:*"
+ "@affine/core": "workspace:*"
+ "@affine/i18n": "workspace:*"
+ "@blocksuite/affine": "npm:0.17.19"
+ "@blocksuite/icons": "npm:^2.1.67"
+ "@capacitor/cli": "npm:^6.1.2"
+ "@capacitor/core": "npm:^6.1.2"
+ "@capacitor/ios": "npm:^6.1.2"
+ "@sentry/react": "npm:^8.0.0"
+ "@types/react": "npm:^18.2.75"
+ "@types/react-dom": "npm:^18.2.24"
+ cross-env: "npm:^7.0.3"
+ react: "npm:^18.2.0"
+ react-dom: "npm:^18.2.0"
+ react-router-dom: "npm:^6.26.1"
+ typescript: "npm:^5.4.5"
+ languageName: unknown
+ linkType: soft
+
"@affine/mobile@workspace:packages/frontend/apps/mobile":
version: 0.0.0-use.local
resolution: "@affine/mobile@workspace:packages/frontend/apps/mobile"
@@ -589,6 +635,7 @@ __metadata:
resolution: "@affine/monorepo@workspace:."
dependencies:
"@affine/cli": "workspace:*"
+ "@capacitor/cli": "npm:^6.1.2"
"@faker-js/faker": "npm:^9.0.0"
"@istanbuljs/schema": "npm:^0.1.3"
"@magic-works/i18n-codegen": "npm:^0.6.0"
@@ -2851,6 +2898,62 @@ __metadata:
languageName: node
linkType: hard
+"@capacitor/android@npm:^6.1.2":
+ version: 6.1.2
+ resolution: "@capacitor/android@npm:6.1.2"
+ peerDependencies:
+ "@capacitor/core": ^6.1.0
+ checksum: 10/be2488dda52a5b054af150c784546a8c89a61eca333e7bbf71244365b9b86561b6d3b9e69baaecfdbbe801c9540bff028a141def00af3a970ade26ff12b4fc7c
+ languageName: node
+ linkType: hard
+
+"@capacitor/cli@npm:^6.1.2":
+ version: 6.1.2
+ resolution: "@capacitor/cli@npm:6.1.2"
+ dependencies:
+ "@ionic/cli-framework-output": "npm:^2.2.5"
+ "@ionic/utils-fs": "npm:^3.1.6"
+ "@ionic/utils-process": "npm:^2.1.11"
+ "@ionic/utils-subprocess": "npm:2.1.11"
+ "@ionic/utils-terminal": "npm:^2.3.3"
+ commander: "npm:^9.3.0"
+ debug: "npm:^4.3.4"
+ env-paths: "npm:^2.2.0"
+ kleur: "npm:^4.1.4"
+ native-run: "npm:^2.0.0"
+ open: "npm:^8.4.0"
+ plist: "npm:^3.0.5"
+ prompts: "npm:^2.4.2"
+ rimraf: "npm:^4.4.1"
+ semver: "npm:^7.3.7"
+ tar: "npm:^6.1.11"
+ tslib: "npm:^2.4.0"
+ xml2js: "npm:^0.5.0"
+ bin:
+ cap: bin/capacitor
+ capacitor: bin/capacitor
+ checksum: 10/eb4c331af9c52d8839441d262b70c29faf24125183711aa014240f06509dd5ad74834b0bf6fa2a9c217090f504af722c0ebc7a8a258afbace6c7ce76092b1a61
+ languageName: node
+ linkType: hard
+
+"@capacitor/core@npm:^6.1.2":
+ version: 6.1.2
+ resolution: "@capacitor/core@npm:6.1.2"
+ dependencies:
+ tslib: "npm:^2.1.0"
+ checksum: 10/2b79bdefd515ae08a4809db405315353945f66a99191af9c98ac3d523eae3b189abb6249f811dd78898a7af29f08dd22b62e9d8e907b6d651bc07d79a232b1a2
+ languageName: node
+ linkType: hard
+
+"@capacitor/ios@npm:^6.1.2":
+ version: 6.1.2
+ resolution: "@capacitor/ios@npm:6.1.2"
+ peerDependencies:
+ "@capacitor/core": ^6.1.0
+ checksum: 10/85cfa7b65b43304e773b60787e3a9618c1ae450fda8bbdb73ebb3c619f61b08174fc71c7e897c0aa3c3e76488f2b72b56f6b847a12a4cc56a434ccc0f716ba69
+ languageName: node
+ linkType: hard
+
"@chromatic-com/storybook@npm:^2.0.0":
version: 2.0.2
resolution: "@chromatic-com/storybook@npm:2.0.2"
@@ -5863,6 +5966,159 @@ __metadata:
languageName: node
linkType: hard
+"@ionic/cli-framework-output@npm:^2.2.5":
+ version: 2.2.8
+ resolution: "@ionic/cli-framework-output@npm:2.2.8"
+ dependencies:
+ "@ionic/utils-terminal": "npm:2.3.5"
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/773cf0cdbd0fbb5709822b84c06a9e9cec6df5a87d9542bcc21a027a9434117e1d3f1a7d04fe11f252d9d232a5678d056ea80d2d4506e38a5f18fc563a990f34
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-array@npm:2.1.5":
+ version: 2.1.5
+ resolution: "@ionic/utils-array@npm:2.1.5"
+ dependencies:
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/eab54e5ae6c3a7d435e420986cd7a0766c00506a829e001ddfc4124542adace6dd0f0c1fc51fa8f5eaa69bd09354a0b5541ff9b39b61763cb0e415936578fd4b
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-fs@npm:3.1.6":
+ version: 3.1.6
+ resolution: "@ionic/utils-fs@npm:3.1.6"
+ dependencies:
+ "@types/fs-extra": "npm:^8.0.0"
+ debug: "npm:^4.0.0"
+ fs-extra: "npm:^9.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/02ec21067436ebaec7a029ed9a045e366f47b77f3149df64ce2bd3a26e46c84e5afeec8cda0da5dc6b77ee901de164f1fe61a3793da5962a1c945273454f599d
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-fs@npm:^3.1.6, @ionic/utils-fs@npm:^3.1.7":
+ version: 3.1.7
+ resolution: "@ionic/utils-fs@npm:3.1.7"
+ dependencies:
+ "@types/fs-extra": "npm:^8.0.0"
+ debug: "npm:^4.0.0"
+ fs-extra: "npm:^9.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/65279a445b4499b9db40dae0c4eface0fdcd6ee95c7931ecb89fb097ee07e61e316ad13da7f495ee567d95dd0dddcbad9b1e46656676e22e51041dde62b06b9d
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-object@npm:2.1.5":
+ version: 2.1.5
+ resolution: "@ionic/utils-object@npm:2.1.5"
+ dependencies:
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/123d1fe5aabe984bd5c93f7e70b3166e47007673218fd9347747c9005be0b10b0c639a8eaf36b77e12337d1cc90171624af06620bf9e9cccb2b8414ad80bc4a5
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-object@npm:2.1.6":
+ version: 2.1.6
+ resolution: "@ionic/utils-object@npm:2.1.6"
+ dependencies:
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/c545f09ede118a801c7eb4c794d4b479c574a98023b752421c0b18e340cb0f509aa7d7e92ef9b1048361e194a0b6f80df8922cd56bae8201d2fb796b71d87e60
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-process@npm:2.1.10":
+ version: 2.1.10
+ resolution: "@ionic/utils-process@npm:2.1.10"
+ dependencies:
+ "@ionic/utils-object": "npm:2.1.5"
+ "@ionic/utils-terminal": "npm:2.3.3"
+ debug: "npm:^4.0.0"
+ signal-exit: "npm:^3.0.3"
+ tree-kill: "npm:^1.2.2"
+ tslib: "npm:^2.0.1"
+ checksum: 10/afe835f0e8beedec53f6fbd0f2fa4f9eb38e59d96c03cecd44b33ffa18b04f9a318bf4e71c7315c9e729bbf942f8e74033b08373058ded2e04ed107956f7eee8
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-process@npm:^2.1.11":
+ version: 2.1.12
+ resolution: "@ionic/utils-process@npm:2.1.12"
+ dependencies:
+ "@ionic/utils-object": "npm:2.1.6"
+ "@ionic/utils-terminal": "npm:2.3.5"
+ debug: "npm:^4.0.0"
+ signal-exit: "npm:^3.0.3"
+ tree-kill: "npm:^1.2.2"
+ tslib: "npm:^2.0.1"
+ checksum: 10/3a94eeb4cc7c05a2d3058e997a2ca05c50bf1a9d76e39b91659d0cbb402adbe2b24b8bc08d8b95bbab1703328dcc50c2e333b345700709ed2ec94e8d844d20c1
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-stream@npm:3.1.5":
+ version: 3.1.5
+ resolution: "@ionic/utils-stream@npm:3.1.5"
+ dependencies:
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/6211825c64295df1c368650b445c8cb1220417855aa6f0cdec68f4ccd3c5368b5f825911708a7242386e9546aa9050a5f85f9b1a0356c8dd9280d1dd33bcb33a
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-subprocess@npm:2.1.11":
+ version: 2.1.11
+ resolution: "@ionic/utils-subprocess@npm:2.1.11"
+ dependencies:
+ "@ionic/utils-array": "npm:2.1.5"
+ "@ionic/utils-fs": "npm:3.1.6"
+ "@ionic/utils-process": "npm:2.1.10"
+ "@ionic/utils-stream": "npm:3.1.5"
+ "@ionic/utils-terminal": "npm:2.3.3"
+ cross-spawn: "npm:^7.0.3"
+ debug: "npm:^4.0.0"
+ tslib: "npm:^2.0.1"
+ checksum: 10/1247e844dcac4add473746b94ad362fb452a57a1083fbbf119779afa8e07f412e70370832138f0a7e7dfce107e62de3570228c371eac1e6216cc43390b2cb70f
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-terminal@npm:2.3.3":
+ version: 2.3.3
+ resolution: "@ionic/utils-terminal@npm:2.3.3"
+ dependencies:
+ "@types/slice-ansi": "npm:^4.0.0"
+ debug: "npm:^4.0.0"
+ signal-exit: "npm:^3.0.3"
+ slice-ansi: "npm:^4.0.0"
+ string-width: "npm:^4.1.0"
+ strip-ansi: "npm:^6.0.0"
+ tslib: "npm:^2.0.1"
+ untildify: "npm:^4.0.0"
+ wrap-ansi: "npm:^7.0.0"
+ checksum: 10/a34f170b94a14e1994aeda44423aff13c96e2ca33f3e94b25cc730a644af3faad36de39028d9a85ee6dcc5065df4968b47238150f33deb5ae8f03e6473b47dcf
+ languageName: node
+ linkType: hard
+
+"@ionic/utils-terminal@npm:2.3.5, @ionic/utils-terminal@npm:^2.3.3, @ionic/utils-terminal@npm:^2.3.4":
+ version: 2.3.5
+ resolution: "@ionic/utils-terminal@npm:2.3.5"
+ dependencies:
+ "@types/slice-ansi": "npm:^4.0.0"
+ debug: "npm:^4.0.0"
+ signal-exit: "npm:^3.0.3"
+ slice-ansi: "npm:^4.0.0"
+ string-width: "npm:^4.1.0"
+ strip-ansi: "npm:^6.0.0"
+ tslib: "npm:^2.0.1"
+ untildify: "npm:^4.0.0"
+ wrap-ansi: "npm:^7.0.0"
+ checksum: 10/40bae30f8cff2d7efa74118d96b2ab16ac9048ba8ffe28a8c203cd398f2688955ddb28d5ebe0c6948890632dc1ca2fe5e84c547ce930cde3ac7be4d5f53e5245
+ languageName: node
+ linkType: hard
+
"@ioredis/commands@npm:^1.1.1":
version: 1.2.0
resolution: "@ioredis/commands@npm:1.2.0"
@@ -13320,6 +13576,15 @@ __metadata:
languageName: node
linkType: hard
+"@types/fs-extra@npm:^8.0.0":
+ version: 8.1.5
+ resolution: "@types/fs-extra@npm:8.1.5"
+ dependencies:
+ "@types/node": "npm:*"
+ checksum: 10/565d9e55cd05064b3ab272b8748ed512b8fa5cddc23fd32b0d5f147f9ea3a45981577c4478b5060cae7b3d914c508bd2ea97eb84d9c1fa6f967982c892e4ab26
+ languageName: node
+ linkType: hard
+
"@types/glob@npm:^7.1.0, @types/glob@npm:^7.1.1, @types/glob@npm:^7.1.3":
version: 7.2.0
resolution: "@types/glob@npm:7.2.0"
@@ -13867,6 +14132,13 @@ __metadata:
languageName: node
linkType: hard
+"@types/slice-ansi@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@types/slice-ansi@npm:4.0.0"
+ checksum: 10/343086bc4e686349382b386a6fb49d632fb4dd08ecc08f1b9872815199efe8db7648731e56c1d10dc0f596fe77a8fce6136e0067136f8e0cefda6b29797aa4f1
+ languageName: node
+ linkType: hard
+
"@types/sockjs@npm:^0.3.36":
version: 0.3.36
resolution: "@types/sockjs@npm:0.3.36"
@@ -15735,7 +16007,7 @@ __metadata:
languageName: node
linkType: hard
-"big-integer@npm:^1.6.44":
+"big-integer@npm:1.6.x, big-integer@npm:^1.6.44":
version: 1.6.52
resolution: "big-integer@npm:1.6.52"
checksum: 10/4bc6ae152a96edc9f95020f5fc66b13d26a9ad9a021225a9f0213f7e3dc44269f423aa8c42e19d6ac4a63bb2b22140b95d10be8f9ca7a6d9aa1b22b330d1f514
@@ -15916,6 +16188,15 @@ __metadata:
languageName: node
linkType: hard
+"bplist-parser@npm:^0.3.2":
+ version: 0.3.2
+ resolution: "bplist-parser@npm:0.3.2"
+ dependencies:
+ big-integer: "npm:1.6.x"
+ checksum: 10/6edf4354c32f5661c258422e478be0f5c6a779bb87c2ae15ee92dd1c046368decbff8a28c86c558a3b7007e1381b91d5eed1c4c8e83e86405197777d944abaa8
+ languageName: node
+ linkType: hard
+
"brace-expansion@npm:^1.1.7":
version: 1.1.11
resolution: "brace-expansion@npm:1.1.11"
@@ -17136,7 +17417,7 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:^9.4.0":
+"commander@npm:^9.3.0, commander@npm:^9.4.0":
version: 9.5.0
resolution: "commander@npm:9.5.0"
checksum: 10/41c49b3d0f94a1fbeb0463c85b13f15aa15a9e0b4d5e10a49c0a1d58d4489b549d62262b052ae0aa6cfda53299bee487bfe337825df15e342114dde543f82906
@@ -18781,6 +19062,15 @@ __metadata:
languageName: node
linkType: hard
+"elementtree@npm:^0.1.7":
+ version: 0.1.7
+ resolution: "elementtree@npm:0.1.7"
+ dependencies:
+ sax: "npm:1.1.4"
+ checksum: 10/7e8f0683c0f5a95b298f56426f0f3796600ddac611cfaf92b76f1f4354b04c3f9aadadd1f86a91e5df372a58f2c3da97ae5988597f5052dd15bbeefbff8381c9
+ languageName: node
+ linkType: hard
+
"embla-carousel-react@npm:^8.1.5":
version: 8.3.0
resolution: "embla-carousel-react@npm:8.3.0"
@@ -21310,7 +21600,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^9.3.2":
+"glob@npm:^9.2.0, glob@npm:^9.3.2":
version: 9.3.5
resolution: "glob@npm:9.3.5"
dependencies:
@@ -22485,7 +22775,7 @@ __metadata:
languageName: node
linkType: hard
-"ini@npm:4.1.3":
+"ini@npm:4.1.3, ini@npm:^4.1.1":
version: 4.1.3
resolution: "ini@npm:4.1.3"
checksum: 10/f536b414d1442e5b233429e2b56efcdb354109b2d65ddd489e5939d8f0f5ad23c88aa2b19c92987249d0dd63ba8192e9aeb1a02b0459549c5a9ff31acd729a5d
@@ -23688,7 +23978,7 @@ __metadata:
languageName: node
linkType: hard
-"kleur@npm:^4.0.0, kleur@npm:^4.1.0":
+"kleur@npm:^4.0.0, kleur@npm:^4.1.0, kleur@npm:^4.1.4":
version: 4.1.5
resolution: "kleur@npm:4.1.5"
checksum: 10/44d84cc4eedd4311099402ef6d4acd9b2d16e08e499d6ef3bb92389bd4692d7ef09e35248c26e27f98acac532122acb12a1bfee645994ae3af4f0a37996da7df
@@ -25889,6 +26179,27 @@ __metadata:
languageName: node
linkType: hard
+"native-run@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "native-run@npm:2.0.1"
+ dependencies:
+ "@ionic/utils-fs": "npm:^3.1.7"
+ "@ionic/utils-terminal": "npm:^2.3.4"
+ bplist-parser: "npm:^0.3.2"
+ debug: "npm:^4.3.4"
+ elementtree: "npm:^0.1.7"
+ ini: "npm:^4.1.1"
+ plist: "npm:^3.1.0"
+ split2: "npm:^4.2.0"
+ through2: "npm:^4.0.2"
+ tslib: "npm:^2.6.2"
+ yauzl: "npm:^2.10.0"
+ bin:
+ native-run: bin/native-run
+ checksum: 10/a495b52ac1d89a03cfdd57f18d977a41af5722c0e3a4f29c84ca82e367e770578db2b24c692b48ce29f8a2d15c5272d36f68bbc8a35634d17202925e66b1ee77
+ languageName: node
+ linkType: hard
+
"natural-compare@npm:^1.4.0":
version: 1.4.0
resolution: "natural-compare@npm:1.4.0"
@@ -28881,6 +29192,17 @@ __metadata:
languageName: node
linkType: hard
+"readable-stream@npm:3, readable-stream@npm:^3.0.6, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0":
+ version: 3.6.2
+ resolution: "readable-stream@npm:3.6.2"
+ dependencies:
+ inherits: "npm:^2.0.3"
+ string_decoder: "npm:^1.1.1"
+ util-deprecate: "npm:^1.0.1"
+ checksum: 10/d9e3e53193adcdb79d8f10f2a1f6989bd4389f5936c6f8b870e77570853561c362bee69feca2bbb7b32368ce96a85504aa4cedf7cf80f36e6a9de30d64244048
+ languageName: node
+ linkType: hard
+
"readable-stream@npm:^2.0.1, readable-stream@npm:^2.2.2, readable-stream@npm:~2.3.6":
version: 2.3.8
resolution: "readable-stream@npm:2.3.8"
@@ -28896,17 +29218,6 @@ __metadata:
languageName: node
linkType: hard
-"readable-stream@npm:^3.0.6, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0":
- version: 3.6.2
- resolution: "readable-stream@npm:3.6.2"
- dependencies:
- inherits: "npm:^2.0.3"
- string_decoder: "npm:^1.1.1"
- util-deprecate: "npm:^1.0.1"
- checksum: 10/d9e3e53193adcdb79d8f10f2a1f6989bd4389f5936c6f8b870e77570853561c362bee69feca2bbb7b32368ce96a85504aa4cedf7cf80f36e6a9de30d64244048
- languageName: node
- linkType: hard
-
"readdirp@npm:~3.6.0":
version: 3.6.0
resolution: "readdirp@npm:3.6.0"
@@ -29445,6 +29756,17 @@ __metadata:
languageName: node
linkType: hard
+"rimraf@npm:^4.4.1":
+ version: 4.4.1
+ resolution: "rimraf@npm:4.4.1"
+ dependencies:
+ glob: "npm:^9.2.0"
+ bin:
+ rimraf: dist/cjs/src/bin.js
+ checksum: 10/218ef9122145ccce9d0a71124d36a3894537de46600b37fae7dba26ccff973251eaa98aa63c2c5855a05fa04bca7cbbd7a92d4b29f2875d2203e72530ecf6ede
+ languageName: node
+ linkType: hard
+
"rimraf@npm:~2.6.2":
version: 2.6.3
resolution: "rimraf@npm:2.6.3"
@@ -29712,7 +30034,14 @@ __metadata:
languageName: node
linkType: hard
-"sax@npm:^1.2.4":
+"sax@npm:1.1.4":
+ version: 1.1.4
+ resolution: "sax@npm:1.1.4"
+ checksum: 10/50dd85c562f6de00f1a6c4049f27471258b35c77961498784976445455f99d105bac0de2edf342730b6e0e410346581622c21494355178b6883611619757ae1b
+ languageName: node
+ linkType: hard
+
+"sax@npm:>=0.6.0, sax@npm:^1.2.4":
version: 1.4.1
resolution: "sax@npm:1.4.1"
checksum: 10/b1c784b545019187b53a0c28edb4f6314951c971e2963a69739c6ce222bfbc767e54d320e689352daba79b7d5e06d22b5d7113b99336219d6e93718e2f99d335
@@ -30639,7 +30968,7 @@ __metadata:
languageName: node
linkType: hard
-"split2@npm:^4.0.0":
+"split2@npm:^4.0.0, split2@npm:^4.2.0":
version: 4.2.0
resolution: "split2@npm:4.2.0"
checksum: 10/09bbefc11bcf03f044584c9764cd31a252d8e52cea29130950b26161287c11f519807c5e54bd9e5804c713b79c02cefe6a98f4688630993386be353e03f534ab
@@ -31562,6 +31891,15 @@ __metadata:
languageName: node
linkType: hard
+"through2@npm:^4.0.2":
+ version: 4.0.2
+ resolution: "through2@npm:4.0.2"
+ dependencies:
+ readable-stream: "npm:3"
+ checksum: 10/72c246233d9a989bbebeb6b698ef0b7b9064cb1c47930f79b25d87b6c867e075432811f69b7b2ac8da00ca308191c507bdab913944be8019ac43b036ce88f6ba
+ languageName: node
+ linkType: hard
+
"through@npm:>=2.2.7 <3, through@npm:^2.3.4, through@npm:^2.3.6, through@npm:^2.3.8":
version: 2.3.8
resolution: "through@npm:2.3.8"
@@ -33501,6 +33839,16 @@ __metadata:
languageName: node
linkType: hard
+"xml2js@npm:^0.5.0":
+ version: 0.5.0
+ resolution: "xml2js@npm:0.5.0"
+ dependencies:
+ sax: "npm:>=0.6.0"
+ xmlbuilder: "npm:~11.0.0"
+ checksum: 10/27c4d759214e99be5ec87ee5cb1290add427fa43df509d3b92d10152b3806fd2f7c9609697a18b158ccf2caa01e96af067cdba93196f69ca10c90e4f79a08896
+ languageName: node
+ linkType: hard
+
"xmlbuilder@npm:^15.1.1":
version: 15.1.1
resolution: "xmlbuilder@npm:15.1.1"
@@ -33508,6 +33856,13 @@ __metadata:
languageName: node
linkType: hard
+"xmlbuilder@npm:~11.0.0":
+ version: 11.0.1
+ resolution: "xmlbuilder@npm:11.0.1"
+ checksum: 10/c8c3d208783718db5b285101a736cd8e6b69a5c265199a0739abaa93d1a1b7de5489fd16df4e776e18b2c98cb91f421a7349e99fd8c1ebeb44ecfed72a25091a
+ languageName: node
+ linkType: hard
+
"xmlhttprequest-ssl@npm:~2.1.1":
version: 2.1.1
resolution: "xmlhttprequest-ssl@npm:2.1.1"