This commit is contained in:
Trey t
2025-11-07 22:02:52 -06:00
parent 992979f113
commit e271403d9b
12 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.mycrib.storage
internal actual fun getPlatformTaskCacheManager(): TaskCacheManager? {
// Android requires context, so must use initialize() method
return null
}

View File

@@ -0,0 +1,6 @@
package com.mycrib.storage
internal actual fun getPlatformTokenManager(): TokenManager? {
// Android requires context, so must use initialize() method
return null
}