mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
Merge branch 'feat/ios' into master
Resolves merge conflicts in: - src/app/core/startup/startup.service.ts: Keep both _store and _platformService injections - src/app/features/android/store/android.effects.ts: Refactor to use platform-agnostic CapacitorReminderService The feat/ios branch adds iOS support via Capacitor, introducing platform-agnostic services for notifications, reminders, and platform detection that work across web, Android, and iOS.
This commit is contained in:
commit
7aee741c1d
46 changed files with 2460 additions and 154 deletions
|
|
@ -9,6 +9,8 @@ android {
|
|||
|
||||
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
|
||||
dependencies {
|
||||
implementation project(':capacitor-keyboard')
|
||||
implementation project(':capacitor-status-bar')
|
||||
implementation project(':capacitor-app')
|
||||
implementation project(':capacitor-filesystem')
|
||||
implementation project(':capacitor-local-notifications')
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
include ':capacitor-android'
|
||||
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')
|
||||
|
||||
include ':capacitor-keyboard'
|
||||
project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')
|
||||
|
||||
include ':capacitor-status-bar'
|
||||
project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android')
|
||||
|
||||
include ':capacitor-app'
|
||||
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue