├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-COMMERCIAL ├── README.md ├── blobannotations ├── .gitignore ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── coredev │ └── GenerateRoomEntity.kt ├── blobdbgen ├── .gitignore ├── build.gradle.kts └── src │ └── main │ ├── kotlin │ └── coredev │ │ └── BlobDbEntityProcessor.kt │ └── resources │ └── META-INF │ └── services │ └── com.google.devtools.ksp.processing.SymbolProcessorProvider ├── composeApp ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── proguard-rules.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── coredevices │ │ │ └── coreapp │ │ │ ├── BugReportService.kt │ │ │ ├── GoogleAuthUtil.android.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainApplication.kt │ │ │ ├── PermissionRequestHandler.kt │ │ │ ├── SyncWorker.kt │ │ │ ├── api │ │ │ └── BugReports.android.kt │ │ │ ├── di │ │ │ └── androidDefaultModule.kt │ │ │ ├── push │ │ │ └── PushMessaging.android.kt │ │ │ ├── ui │ │ │ └── screens │ │ │ │ ├── BugReport.android.kt │ │ │ │ └── BugReportProcessor.android.kt │ │ │ └── util │ │ │ └── logging.android.kt │ └── res │ │ ├── values │ │ └── strings.xml │ │ └── xml │ │ └── filepaths.xml │ ├── commonMain │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── coredevices │ │ └── coreapp │ │ ├── CommonAppDelegate.kt │ │ ├── GoogleAuthUtil.kt │ │ ├── api │ │ ├── BugApi.kt │ │ ├── BugReports.kt │ │ ├── BugReportsService.kt │ │ └── PushService.kt │ │ ├── di │ │ ├── apiModule.kt │ │ └── utilModule.kt │ │ ├── push │ │ └── PushMessaging.kt │ │ ├── ui │ │ ├── App.kt │ │ ├── navigation │ │ │ ├── AppNavHost.kt │ │ │ └── CoreDeepLinkHandler.kt │ │ └── screens │ │ │ ├── BugReportProcessor.kt │ │ │ ├── BugReportScreen.kt │ │ │ ├── BugReportsListScreen.kt │ │ │ ├── OnboardingScreen.kt │ │ │ └── ViewBugReportScreen.kt │ │ └── util │ │ └── logging.kt │ ├── google-services-dummy.json │ └── iosMain │ └── kotlin │ └── coredevices │ └── coreapp │ ├── GoogleAuthUtil.ios.kt │ ├── IOSDelegate.kt │ ├── MainViewController.kt │ ├── api │ └── BugReports.ios.kt │ ├── di │ └── iosDefaultModule.kt │ ├── push │ └── PushMessaging.ios.kt │ ├── ui │ └── screens │ │ ├── BugReport.ios.kt │ │ └── BugReportProcessor.ios.kt │ └── util │ └── logging.ios.kt ├── experimental ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── coredevices │ ├── ExperimentalDevices.kt │ └── experimentalModule.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── .gitignore ├── Configuration │ └── Config.xcconfig ├── Podfile ├── Podfile.lock ├── iosApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved ├── iosApp.xcworkspace │ └── contents.xcworkspacedata └── iosApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ ├── Contents.json │ └── LaunchBackgroundColor.colorset │ │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── iOSApp.swift │ └── iosApp.entitlements ├── libpebble3 ├── .gitignore ├── Package.swift.template ├── build.gradle.kts ├── consumer-rules.pro ├── libpebble-swift │ ├── LibPebbleSwift.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── LibPebbleSwift │ │ ├── IOSLocation.h │ │ ├── IOSLocation.swift │ │ └── LibPebbleSwift.h ├── schema │ └── io.rebble.libpebblecommon.database.Database │ │ ├── 1.json │ │ ├── 10.json │ │ ├── 11.json │ │ ├── 12.json │ │ ├── 13.json │ │ ├── 14.json │ │ ├── 15.json │ │ ├── 16.json │ │ ├── 17.json │ │ ├── 18.json │ │ ├── 19.json │ │ ├── 2.json │ │ ├── 20.json │ │ ├── 21.json │ │ ├── 22.json │ │ ├── 23.json │ │ ├── 24.json │ │ ├── 25.json │ │ ├── 26.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ └── js │ │ └── PKJSRunnerTests.android.kt │ ├── androidMain │ ├── AndroidManifest.xml │ ├── assets │ │ ├── startup.js │ │ └── webview_startup.html │ └── kotlin │ │ ├── io │ │ └── rebble │ │ │ └── libpebblecommon │ │ │ ├── calendar │ │ │ └── AndroidSystemCalendar.kt │ │ │ ├── calls │ │ │ ├── AndroidPhoneReceiver.kt │ │ │ ├── AndroidSystemCallLog.kt │ │ │ └── LibPebbleInCallService.kt │ │ │ ├── connection │ │ │ ├── AppContext.android.kt │ │ │ ├── ConnectionFailureHandler.android.kt │ │ │ ├── PebbleDevice.android.kt │ │ │ ├── bt │ │ │ │ ├── BluetoothState.android.kt │ │ │ │ ├── Pairing.android.kt │ │ │ │ ├── ble │ │ │ │ │ ├── pebble │ │ │ │ │ │ └── PebbleBle.android.kt │ │ │ │ │ └── transport │ │ │ │ │ │ ├── BleScanner.android.kt │ │ │ │ │ │ ├── GattClient.android.kt │ │ │ │ │ │ ├── GattServer.android.kt │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── KableBleScanner.android.kt │ │ │ │ │ │ └── KableGattClient.android.kt │ │ │ │ └── classic │ │ │ │ │ └── transport │ │ │ │ │ └── AndroidBtClassicConnector.kt │ │ │ ├── devconnection │ │ │ │ └── DevConnectionTransport.android.kt │ │ │ └── endpointmanager │ │ │ │ ├── CompanionAppLifecycleManager.android.kt │ │ │ │ ├── musiccontrol │ │ │ │ └── PlaybackState.android.kt │ │ │ │ └── timeline │ │ │ │ └── NotificationActionHandler.android.kt │ │ │ ├── contacts │ │ │ └── AndroidSystemContacts.kt │ │ │ ├── database │ │ │ └── Database.android.kt │ │ │ ├── di │ │ │ ├── LibPebbleModule.android.kt │ │ │ └── PKJSModule.android.kt │ │ │ ├── js │ │ │ ├── JSLocalStorageInterface.android.kt │ │ │ ├── JsRunnerFactory.android.kt │ │ │ ├── WebViewGeolocationInterface.kt │ │ │ ├── WebViewJSLocalStorageInterface.kt │ │ │ ├── WebViewJsRunner.kt │ │ │ ├── WebViewPKJSInterface.kt │ │ │ └── WebViewPrivatePKJSInterface.kt │ │ │ ├── locker │ │ │ └── Locker.android.kt │ │ │ ├── music │ │ │ └── AndroidSystemMusicControl.kt │ │ │ ├── notification │ │ │ ├── LibPebbleNotification.kt │ │ │ ├── LibPebbleNotificationAction.kt │ │ │ ├── LibPebbleNotificationListener.kt │ │ │ ├── LibPebbleNotificationListenerConnection.kt │ │ │ ├── NotificationAppsSync.kt │ │ │ ├── NotificationHandler.kt │ │ │ ├── NotificationProcessor.kt │ │ │ ├── NotificationResult.kt │ │ │ ├── PlatformNotificationListener.main~1.kt │ │ │ └── processor │ │ │ │ ├── BasicNotificationProcessor.kt │ │ │ │ └── NotificationProperties.kt │ │ │ ├── pebblekit │ │ │ ├── PebbleDictionary.kt │ │ │ ├── PebbleKitClassic.kt │ │ │ ├── PebbleKitClassicStartListeners.kt │ │ │ ├── PebbleKitProvider.kt │ │ │ ├── PebbleKitProviderNotifier.kt │ │ │ └── PebbleTuple.kt │ │ │ ├── time │ │ │ └── TimeChanged.android.kt │ │ │ ├── util │ │ │ ├── AndroidSystemGeolocation.kt │ │ │ ├── BitmapUtil.android.kt │ │ │ ├── OtherPebbleAndroidApps.kt │ │ │ └── TempFile.android.kt │ │ │ └── web │ │ │ └── FirmwareDownloader.android.kt │ │ ├── main.kt │ │ └── util │ │ ├── Bitmap.kt │ │ ├── BroadcastReceiver.kt │ │ └── DataBuffer.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ ├── ErrorTracker.kt │ │ ├── Housekeeping.kt │ │ ├── LibPebbleAnalytics.kt │ │ ├── LibPebbleConfig.kt │ │ ├── Logging.kt │ │ ├── PacketPriority.kt │ │ ├── SystemAppIDs.kt │ │ ├── calendar │ │ ├── CalendarEvent.kt │ │ ├── PhoneCalendarSyncer.kt │ │ └── SystemCalendar.kt │ │ ├── calls │ │ ├── BlockedReason.kt │ │ ├── Call.kt │ │ ├── LegacyPhoneReceiver.kt │ │ ├── MissedCall.kt │ │ ├── MissedCallSyncer.kt │ │ └── SystemCallLog.kt │ │ ├── connection │ │ ├── AppContext.kt │ │ ├── CompanionApp.kt │ │ ├── ConnectionException.kt │ │ ├── ConnectionFailureHandler.kt │ │ ├── FakeLibPebble.kt │ │ ├── LibPebble.kt │ │ ├── Negotiator.kt │ │ ├── PebbleDevice.kt │ │ ├── PebbleProtocolHandler.kt │ │ ├── PebbleProtocolRunner.kt │ │ ├── PlatformIdentifier.kt │ │ ├── RealPebbleDevice.kt │ │ ├── Scanning.kt │ │ ├── Transport.kt │ │ ├── TransportConnector.kt │ │ ├── WatchManager.kt │ │ ├── bt │ │ │ ├── BluetoothState.kt │ │ │ ├── Pairing.kt │ │ │ ├── ble │ │ │ │ ├── BlePlatformConfig.kt │ │ │ │ ├── pebble │ │ │ │ │ ├── BatteryWatcher.kt │ │ │ │ │ ├── ConnectionParams.kt │ │ │ │ │ ├── ConnectivityWatcher.kt │ │ │ │ │ ├── GATTPacket.kt │ │ │ │ │ ├── LEConstants.kt │ │ │ │ │ ├── Mtu.kt │ │ │ │ │ ├── PebbleBle.kt │ │ │ │ │ ├── PebbleLeScanRecord.kt │ │ │ │ │ ├── PebblePairing.kt │ │ │ │ │ ├── PpogClient.kt │ │ │ │ │ └── PpogServer.kt │ │ │ │ ├── ppog │ │ │ │ │ ├── PPoG.kt │ │ │ │ │ └── PPoGPacket.kt │ │ │ │ └── transport │ │ │ │ │ ├── BleScanner.kt │ │ │ │ │ ├── GattClient.kt │ │ │ │ │ ├── GattServer.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── KableBleScanner.kt │ │ │ │ │ └── KableGattClient.kt │ │ │ └── classic │ │ │ │ └── pebble │ │ │ │ └── PebbleBtClassic.kt │ │ ├── devconnection │ │ │ ├── ClientMessageType.kt │ │ │ ├── DevConnectionCloudpebbleProxy.kt │ │ │ ├── DevConnectionLANServer.kt │ │ │ ├── DevConnectionManager.kt │ │ │ ├── DevConnectionTransport.kt │ │ │ ├── ServerMessageType.kt │ │ │ └── packets.kt │ │ └── endpointmanager │ │ │ ├── AppFetchProvider.kt │ │ │ ├── AppOrderManager.kt │ │ │ ├── CompanionAppLifecycleManager.kt │ │ │ ├── DebugPebbleProtocolSender.kt │ │ │ ├── FirmwareUpdater.kt │ │ │ ├── LanguagePackInstaller.kt │ │ │ ├── audio │ │ │ └── VoiceSessionManager.kt │ │ │ ├── blobdb │ │ │ └── BlobDB.kt │ │ │ ├── musiccontrol │ │ │ ├── MusicControlManager.kt │ │ │ └── MusicTrack.kt │ │ │ ├── phonecontrol │ │ │ ├── CallAction.kt │ │ │ └── PhoneControlManager.kt │ │ │ ├── putbytes │ │ │ └── PutBytesSession.kt │ │ │ └── timeline │ │ │ ├── PlatformNotificationActionHandler.kt │ │ │ └── TimelineActionManager.kt │ │ ├── contacts │ │ └── PhoneContactsSyncer.kt │ │ ├── database │ │ ├── BlobDbDatabaseManager.kt │ │ ├── Database.kt │ │ ├── RoomTypeConverters.kt │ │ ├── dao │ │ │ ├── BlobDbSourceDao.kt │ │ │ ├── CalendarDao.kt │ │ │ ├── ContactDao.kt │ │ │ ├── KnownWatchDao.kt │ │ │ ├── LockerAppPermissionDao.kt │ │ │ ├── LockerEntryDao.kt │ │ │ ├── NotificationAppDao.kt │ │ │ ├── NotificationDao.kt │ │ │ ├── TimelineNotiifcationRealDao.kt │ │ │ ├── TimelinePinRealDao.kt │ │ │ ├── TimelineReminderRealDao.kt │ │ │ └── VibePatternDao.kt │ │ └── entity │ │ │ ├── CalendarEntity.kt │ │ │ ├── ContactEntity.kt │ │ │ ├── KnownWatchItem.kt │ │ │ ├── LockerAppPermission.kt │ │ │ ├── LockerEntry.kt │ │ │ ├── NotificationAppEntity.kt │ │ │ ├── NotificationEntity.kt │ │ │ ├── TimelineItem.kt │ │ │ ├── TimelineItemDsl.kt │ │ │ ├── VibePatternEntity.kt │ │ │ └── WatchSettings.kt │ │ ├── datalogging │ │ └── Datalogging.kt │ │ ├── di │ │ ├── LibPebbleModule.kt │ │ └── PKJSModule.kt │ │ ├── disk │ │ ├── PbwBinHeader.kt │ │ ├── pbw │ │ │ ├── DiskUtil.kt │ │ │ └── PbwApp.kt │ │ └── pbz │ │ │ ├── DiskUtil.kt │ │ │ └── PbzFirmware.kt │ │ ├── exceptions │ │ └── packet.kt │ │ ├── health │ │ └── Health.kt │ │ ├── js │ │ ├── ActivePebbleWatchInfo.kt │ │ ├── CompanionAppDevice.kt │ │ ├── GeolocationInterface.kt │ │ ├── JSLocalStorageInterface.kt │ │ ├── JsRunner.kt │ │ ├── JsRunnerFactory.kt │ │ ├── JsTokenUtil.kt │ │ ├── PKJSApp.kt │ │ ├── PKJSInterface.kt │ │ ├── PrivatePKJSInterface.kt │ │ └── RemoteTimelineEmulator.kt │ │ ├── locker │ │ ├── Locker.kt │ │ ├── LockerWrapper.kt │ │ └── SystemApps.kt │ │ ├── main.kt │ │ ├── metadata │ │ ├── StringOrBoolean.kt │ │ ├── WatchColor.kt │ │ ├── WatchHardwarePlatform.kt │ │ ├── WatchType.kt │ │ ├── pbw │ │ │ ├── appinfo │ │ │ │ ├── Media.kt │ │ │ │ ├── PbwAppInfo.kt │ │ │ │ ├── Resources.kt │ │ │ │ └── Watchapp.kt │ │ │ └── manifest │ │ │ │ ├── Debug.kt │ │ │ │ ├── PbwBlob.kt │ │ │ │ ├── PbwManifest.kt │ │ │ │ └── SdkVersion.kt │ │ └── pbz │ │ │ └── manifest │ │ │ ├── JsTooling.kt │ │ │ ├── PbzManifest.kt │ │ │ ├── PbzManifestFirmware.kt │ │ │ └── SystemResources.kt │ │ ├── music │ │ ├── MusicAction.kt │ │ ├── PlaybackState.kt │ │ ├── RepeatType.kt │ │ └── SystemMusicControl.kt │ │ ├── notification │ │ ├── ContactsApi.kt │ │ ├── DefaultVibePattern.kt │ │ ├── NotificationDecision.kt │ │ └── PlatformNotificationListener.kt │ │ ├── packets │ │ ├── AppCustomization.kt │ │ ├── AppFetch.kt │ │ ├── AppLog.kt │ │ ├── AppMessage.kt │ │ ├── AppReorder.kt │ │ ├── AppRunState.kt │ │ ├── Audio.kt │ │ ├── DataLogging.kt │ │ ├── Emulator.kt │ │ ├── GetBytes.kt │ │ ├── LogDump.kt │ │ ├── Music.kt │ │ ├── PhoneControl.kt │ │ ├── PutBytes.kt │ │ ├── Reset.kt │ │ ├── Screenshot.kt │ │ ├── System.kt │ │ ├── Voice.kt │ │ └── blobdb │ │ │ ├── App.kt │ │ │ ├── BlobDB.kt │ │ │ ├── BlobDB2.kt │ │ │ ├── Notification.kt │ │ │ ├── Timeline.kt │ │ │ └── TimelineIcon.kt │ │ ├── protocolhelpers │ │ ├── PacketRegistry.kt │ │ ├── PebblePacket.kt │ │ └── ProtocolEndpoint.kt │ │ ├── services │ │ ├── AppFetchService.kt │ │ ├── AppLogService.kt │ │ ├── AppReorderService.kt │ │ ├── AudioStreamService.kt │ │ ├── DataLoggingService.kt │ │ ├── GetBytesService.kt │ │ ├── LogDumpService.kt │ │ ├── MusicService.kt │ │ ├── PhoneControlService.kt │ │ ├── ProtocolService.kt │ │ ├── PutBytesService.kt │ │ ├── ScreenshotService.kt │ │ ├── SystemService.kt │ │ ├── VoiceService.kt │ │ ├── app │ │ │ └── AppRunStateService.kt │ │ ├── appmessage │ │ │ ├── AppMessageService.kt │ │ │ └── AppMessageTransactionSequence.kt │ │ └── blobdb │ │ │ ├── BlobDBService.kt │ │ │ └── TimelineService.kt │ │ ├── structmapper │ │ ├── StructMappable.kt │ │ ├── StructMapper.kt │ │ └── types.kt │ │ ├── time │ │ └── TimeChanged.kt │ │ ├── timeline │ │ ├── TimelineApi.kt │ │ └── TimelineColor.kt │ │ ├── util │ │ ├── Bitmap.kt │ │ ├── BitmapUtil.kt │ │ ├── Cookie.kt │ │ ├── Crc32Calculator.kt │ │ ├── DataBuffer.kt │ │ ├── Endian.kt │ │ ├── LazyLock.kt │ │ ├── PacketSize.kt │ │ ├── PebbleColor.kt │ │ ├── PrivateLogger.kt │ │ ├── SerializationUtil.kt │ │ ├── SystemGeolocation.kt │ │ ├── TempFile.kt │ │ ├── TimelineAttributeFactory.kt │ │ └── UtilFunctions.kt │ │ ├── voice │ │ ├── TranscriptionProvider.kt │ │ ├── TranscriptionResult.kt │ │ ├── TranscriptionWord.kt │ │ └── VoiceEncoderInfo.kt │ │ └── web │ │ ├── FirmwareDownloader.kt │ │ ├── FirmwareUpdateManager.kt │ │ ├── LockerModel.kt │ │ └── WebSyncManager.kt │ ├── commonTest │ └── kotlin │ │ ├── TestPebbleProtocolHandler.kt │ │ ├── TestUtils.kt │ │ ├── Tests.kt │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ ├── connection │ │ ├── FakeAppMessages.kt │ │ └── LockerTest.kt │ │ ├── database │ │ └── dao │ │ │ └── FakeLockerEntryDao.kt │ │ ├── js │ │ └── PKJSRunnerTests.kt │ │ ├── metadata │ │ └── pbw │ │ │ ├── appinfo │ │ │ └── TestAppInfo.kt │ │ │ └── manifest │ │ │ └── TestManifest.kt │ │ └── packets │ │ ├── AppMessageTest.kt │ │ ├── AppRunStateMessageTest.kt │ │ ├── SystemMessageTest.kt │ │ └── blobdb │ │ └── AppTest.kt │ ├── iosMain │ └── kotlin │ │ ├── io │ │ └── rebble │ │ │ └── libpebblecommon │ │ │ ├── calendar │ │ │ └── IosSystemCalendar.kt │ │ │ ├── calls │ │ │ ├── IosLegacyPhoneReceiver.kt │ │ │ └── IosSystemCallLog.kt │ │ │ ├── connection │ │ │ ├── AppContext.ios.kt │ │ │ ├── ConnectionFailureHandler.ios.kt │ │ │ ├── PebbleDevice.ios.kt │ │ │ ├── bt │ │ │ │ ├── BluetoothState.ios.kt │ │ │ │ ├── Pairing.ios.kt │ │ │ │ └── ble │ │ │ │ │ ├── pebble │ │ │ │ │ └── PebbleBle.ios.kt │ │ │ │ │ └── transport │ │ │ │ │ ├── GattServer.ios.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── KableBleScanner.ios.kt │ │ │ │ │ └── KableGattClient.ios.kt │ │ │ ├── devconnection │ │ │ │ └── DevConnectionTransport.ios.kt │ │ │ └── endpointmanager │ │ │ │ ├── CompanionAppLifecycleManager.ios.kt │ │ │ │ └── timeline │ │ │ │ └── NotificationActionHandler.ios.kt │ │ │ ├── contacts │ │ │ └── IosSystemContacts.kt │ │ │ ├── database │ │ │ └── Database.ios.kt │ │ │ ├── di │ │ │ ├── LibPebbleModule.ios.kt │ │ │ └── PKJSModule.ios.kt │ │ │ ├── js │ │ │ ├── JSCGeolocationInterface.kt │ │ │ ├── JSCJSLocalStorageInterface.kt │ │ │ ├── JSCPKJSInterface.kt │ │ │ ├── JSCPrivatePKJSInterface.kt │ │ │ ├── JSError.kt │ │ │ ├── JSLocalStorageInterface.ios.kt │ │ │ ├── JSTimeout.js │ │ │ ├── JSTimeout.kt │ │ │ ├── JavascriptCoreJsRunner.kt │ │ │ ├── JsCoreExtensions.kt │ │ │ ├── JsRunnerFactory.ios.kt │ │ │ ├── RegisterableJsInterface.kt │ │ │ ├── XMLHTTPRequest.js │ │ │ └── XMLHTTPRequestManager.kt │ │ │ ├── locker │ │ │ └── Locker.ios.kt │ │ │ ├── music │ │ │ └── IosSystemMusicControl.kt │ │ │ ├── notification │ │ │ └── PlatformNotificationListener.ios.kt │ │ │ ├── time │ │ │ └── TimeChanged.ios.kt │ │ │ ├── util │ │ │ ├── Bitmap.kt │ │ │ ├── BitmapUtil.ios.kt │ │ │ ├── IosSystemGeolocation.kt │ │ │ ├── OtherPebbleIosApps.kt │ │ │ └── TempFile.ios.kt │ │ │ └── web │ │ │ └── FirmwareDownloader.ios.kt │ │ ├── main.kt │ │ └── util │ │ ├── DataBuffer.kt │ │ └── UtilFunctions.kt │ ├── iosTest │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ └── js │ │ └── PKJSRunnerTests.ios.kt │ ├── jvmMain │ ├── jvmMain.iml │ └── kotlin │ │ ├── io │ │ └── rebble │ │ │ └── libpebblecommon │ │ │ ├── connection │ │ │ ├── AppContext.jvm.kt │ │ │ ├── ConnectionFailureHandler.jvm.kt │ │ │ ├── PebbleDevice.jvm.kt │ │ │ ├── bt │ │ │ │ ├── BluetoothState.jvm.kt │ │ │ │ ├── Pairing.jvm.kt │ │ │ │ └── ble │ │ │ │ │ ├── pebble │ │ │ │ │ └── PebbleBle.jvm.kt │ │ │ │ │ └── transport │ │ │ │ │ ├── GattServer.jvm.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── KableBleScanner.jvm.kt │ │ │ │ │ └── KableGattClient.jvm.kt │ │ │ ├── devconnection │ │ │ │ └── DevConnectionTransport.jvm.kt │ │ │ └── endpointmanager │ │ │ │ └── CompanionAppLifecycleManager.jvm.kt │ │ │ ├── database │ │ │ └── Database.jvm.kt │ │ │ ├── di │ │ │ ├── LibPebbleModule.jvm.kt │ │ │ └── PKJSModule.jvm.kt │ │ │ ├── js │ │ │ ├── JSLocalStorageInterface.jvm.kt │ │ │ └── JsRunnerFactory.jvm.kt │ │ │ ├── locker │ │ │ └── Locker.jvm.kt │ │ │ ├── notification │ │ │ └── PlatformNotificationListener.jvm.kt │ │ │ ├── time │ │ │ └── TimeChanged.jvm.kt │ │ │ ├── util │ │ │ ├── Bitmap.kt │ │ │ ├── BitmapUtil.jvm.kt │ │ │ └── TempFile.jvm.kt │ │ │ └── web │ │ │ └── FirmwareDownloader.jvm.kt │ │ ├── main.kt │ │ └── util │ │ └── DataBuffer.kt │ ├── jvmTest │ ├── jvmTest.iml │ ├── kotlin │ │ ├── DeviceTest.kt │ │ ├── JvmTestUtils.kt │ │ └── io │ │ │ └── rebble │ │ │ └── libpebblecommon │ │ │ ├── connection │ │ │ ├── WatchManagerTest.kt │ │ │ ├── bt │ │ │ │ └── ble │ │ │ │ │ └── ppog │ │ │ │ │ └── PPoGTest.kt │ │ │ └── endpointmanager │ │ │ │ └── blobdb │ │ │ │ └── NotificationAppsDbTest.kt │ │ │ ├── disk │ │ │ └── pbz │ │ │ │ └── PbzFirmwareTest.kt │ │ │ ├── packets │ │ │ └── MusicTest.kt │ │ │ ├── services │ │ │ ├── FirmwareVersionTest.kt │ │ │ └── SystemServiceTest.kt │ │ │ └── util │ │ │ └── CrcCalculatorTest.kt │ └── resources │ │ ├── normal_asterix_test.pbz │ │ └── normal_obelix_test.pbz │ └── nativeInterop │ └── cinterop │ └── libPebbleSwift.def ├── libpebblecommon.iosMain.iml ├── libpebblecommon.iosTest.iml ├── pebble ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ │ └── coredevices │ │ └── pebble │ │ ├── PebbleAndroidDelegate.kt │ │ ├── PebbleDeepLinkHandler.android.kt │ │ ├── account │ │ └── BootConfig.android.kt │ │ ├── firmware │ │ └── FirmwareUpdateUiTracker.android.kt │ │ ├── services │ │ └── CactusTranscription.android.kt │ │ ├── ui │ │ ├── PreviewUtil.android.kt │ │ ├── WatchDebug.android.kt │ │ ├── WatchFirmwareSideload.android.kt │ │ ├── WatchSettingsScreen.android.kt │ │ ├── WatchappSettingsScreen.android.kt │ │ └── WatchesScreen.android.kt │ │ └── watchModule.android.kt │ ├── commonMain │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── coredevices │ │ └── pebble │ │ ├── PebbleAppDelegate.kt │ │ ├── PebbleDeepLinkHandler.kt │ │ ├── PebbleFeatures.kt │ │ ├── account │ │ ├── BootConfig.kt │ │ ├── FirestoreLocker.kt │ │ ├── GithubAccount.kt │ │ └── PebbleAccount.kt │ │ ├── firmware │ │ ├── Cohorts.kt │ │ ├── FirmwareUpdateCheck.kt │ │ └── FirmwareUpdateUiTracker.kt │ │ ├── rememberLibPebble.kt │ │ ├── services │ │ ├── AppstoreService.kt │ │ ├── CactusTranscription.kt │ │ ├── Github.kt │ │ ├── LanguagePackRepository.kt │ │ ├── Memfault.kt │ │ ├── NullTranscriptionProvider.kt │ │ ├── OAuthService.kt │ │ └── PebbleWebServices.kt │ │ ├── ui │ │ ├── AppStoreCollectionScreen.kt │ │ ├── AppStoreScreen.kt │ │ ├── AppstoreSettingsScreen.kt │ │ ├── CalendarScreen.kt │ │ ├── Colors.kt │ │ ├── DebugFirmwareSideload.kt │ │ ├── Icons.kt │ │ ├── LockerAppScreen.kt │ │ ├── LockerImportDialog.kt │ │ ├── LockerScreen.kt │ │ ├── NotificationAppScreen.kt │ │ ├── NotificationAppsScreen.kt │ │ ├── NotificationContactsScreen.kt │ │ ├── NotificationHistoryScreen.kt │ │ ├── NotificationRulesScreen.kt │ │ ├── NotificationViewerScreen.kt │ │ ├── NotificationsScreen.kt │ │ ├── PebbleRoutes.kt │ │ ├── PermissionsScreen.kt │ │ ├── PreviewUtil.kt │ │ ├── Vibrations.kt │ │ ├── WatchHomeScreen.kt │ │ ├── WatchScreen.kt │ │ ├── WatchSettingsScreen.kt │ │ ├── WatchappSettingsScreen.kt │ │ └── WatchesScreen.kt │ │ ├── watchModule.kt │ │ └── weather │ │ └── WeatherFetcher.kt │ ├── commonTest │ └── kotlin │ │ └── coredevices │ │ └── pebble │ │ ├── PebbleDeepLinkHandlerTest.kt │ │ ├── services │ │ └── MemfaultTest.kt │ │ └── weather │ │ └── WeatherTest.kt │ └── iosMain │ └── kotlin │ └── coredevices │ └── pebble │ ├── PebbleDeepLinkHandler.ios.kt │ ├── PebbleIosDelegate.kt │ ├── account │ └── BootConfig.ios.kt │ ├── firmware │ └── FirmwareUpdateUiTracker.ios.kt │ ├── services │ └── CactusTranscription.ios.kt │ ├── ui │ ├── PreviewUtil.ios.kt │ ├── WatchDebug.ios.kt │ ├── WatchFirmwareSideload.ios.kt │ ├── WatchSettingsScreen.ios.kt │ ├── WatchappSettingsScreen.ios.kt │ └── WatchesScreen.ios.kt │ └── watchModule.ios.kt ├── settings.gradle.kts ├── src ├── androidMain │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ └── di │ │ └── LibPebbleModule.android.kt ├── iosMain │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ └── di │ │ └── LibPebbleModule.ios.kt ├── jvmMain │ └── kotlin │ │ └── io │ │ └── rebble │ │ └── libpebblecommon │ │ └── di │ │ └── LibPebbleModule.jvm.kt └── jvmTest │ └── kotlin │ └── io │ └── rebble │ └── libpebblecommon │ └── connection │ └── endpointmanager │ └── blobdb │ └── NotificationAppsDbTest.kt └── util ├── .gitignore ├── build.gradle.kts ├── schema └── coredevices.database.CoreDatabase │ ├── 1.json │ ├── 2.json │ ├── 3.json │ └── 4.json └── src ├── androidMain ├── AndroidManifest.xml ├── ic_launcher-playstore.png ├── kotlin │ ├── AppUpdate.android.kt │ ├── PlatformContext.android.kt │ ├── PlatformShareLauncher.android.kt │ ├── RememberDocumentLauncher.android.kt │ ├── Url.kt │ ├── context.kt │ ├── coredevices │ │ ├── analytics │ │ │ └── Analytics.android.kt │ │ ├── database │ │ │ └── CoreDatabase.android.kt │ │ ├── ui │ │ │ ├── ModelDownloadDialog.android.kt │ │ │ └── PebbleWebview.android.kt │ │ └── util │ │ │ ├── AndroidCompanionDevice.kt │ │ │ ├── AndroidPermissionRequester.kt │ │ │ ├── Cactus.android.kt │ │ │ ├── PermissionRequester.android.kt │ │ │ ├── Platform.android.kt │ │ │ ├── PlatformBondingListener.android.kt │ │ │ └── context.android.kt │ └── theme │ │ └── Theme.android.kt └── res │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher_foreground.webp │ ├── mipmap-mdpi │ └── ic_launcher_foreground.webp │ ├── mipmap-xhdpi │ └── ic_launcher_foreground.webp │ ├── mipmap-xxhdpi │ └── ic_launcher_foreground.webp │ ├── mipmap-xxxhdpi │ └── ic_launcher_foreground.webp │ └── values │ └── ic_launcher_background.xml ├── commonMain ├── composeResources │ ├── drawable │ │ ├── assistant.xml │ │ ├── core.xml │ │ ├── notes.xml │ │ └── waveform.xml │ ├── font │ │ ├── Inter-Italic.ttf │ │ └── Inter.ttf │ └── values │ │ └── strings.xml └── kotlin │ ├── AppUpdate.kt │ ├── AppUpdateTracker.kt │ ├── BugReportButton.kt │ ├── CommonApiConfig.kt │ ├── CommonRoutes.kt │ ├── CoreAppVersion.kt │ ├── CoreIcons.kt │ ├── DocumentAttachment.kt │ ├── PathUtil.kt │ ├── PlatformContext.kt │ ├── PlatformShareLauncher.kt │ ├── RememberDocumentLauncher.kt │ ├── coredevices │ ├── CoreBackgroundSync.kt │ ├── EnableExperimentalDevices.kt │ ├── analytics │ │ ├── AnalyticsBackend.kt │ │ └── CoreAnalytics.kt │ ├── api │ │ ├── ApiAuthException.kt │ │ └── ApiClient.kt │ ├── database │ │ ├── AppstoreCollection.kt │ │ ├── AppstoreSource.kt │ │ ├── CoreDatabase.kt │ │ ├── HeartbeatEntity.kt │ │ ├── UserConfig.kt │ │ └── UserConfigDao.kt │ ├── ui │ │ ├── Components.kt │ │ ├── GenericWebViewScreen.kt │ │ ├── M3Dialog.kt │ │ ├── ModelDownloadDialog.kt │ │ └── PebbleWebview.kt │ └── util │ │ ├── AppResumed.kt │ │ ├── Cactus.kt │ │ ├── CompanionDevice.kt │ │ ├── CoreConfig.kt │ │ ├── DoneInitialOnboarding.kt │ │ ├── FirebaseAuth.kt │ │ ├── GCloudTranscription.kt │ │ ├── GoogAuthUtil.kt │ │ ├── Permission.kt │ │ ├── PermissionRequester.kt │ │ ├── Platform.kt │ │ ├── PlatformBondingListener.kt │ │ ├── context.kt │ │ └── files.kt │ └── theme │ ├── Color.kt │ ├── ExtendedColors.kt │ ├── Theme.kt │ └── Type.kt ├── commonTest └── kotlin │ └── coredevices │ └── analytics │ └── CoreAnalyticsTest.kt └── iosMain └── kotlin ├── AppUpdate.ios.kt ├── PlatformContext.ios.kt ├── PlatformShareLauncher.ios.kt ├── RememberDocumentLauncher.ios.kt ├── coredevices ├── database │ └── CoreDatabase.ios.kt ├── ui │ ├── ModelDownloadDialog.ios.kt │ └── PebbleWebview.ios.kt └── util │ ├── Cactus.ios.kt │ ├── IosCompanionDevice.kt │ ├── IosPermissionRequester.kt │ ├── NSData.kt │ ├── PermissionRequester.ios.kt │ ├── Platform.ios.kt │ ├── PlatformBondingListener.ios.kt │ └── context.ios.kt ├── path.ios.kt └── theme └── Theme.ios.kt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/LICENSE-COMMERCIAL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/README.md -------------------------------------------------------------------------------- /blobannotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobannotations/.gitignore -------------------------------------------------------------------------------- /blobannotations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobannotations/build.gradle.kts -------------------------------------------------------------------------------- /blobannotations/src/commonMain/kotlin/coredev/GenerateRoomEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobannotations/src/commonMain/kotlin/coredev/GenerateRoomEntity.kt -------------------------------------------------------------------------------- /blobdbgen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobdbgen/.gitignore -------------------------------------------------------------------------------- /blobdbgen/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobdbgen/build.gradle.kts -------------------------------------------------------------------------------- /blobdbgen/src/main/kotlin/coredev/BlobDbEntityProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/blobdbgen/src/main/kotlin/coredev/BlobDbEntityProcessor.kt -------------------------------------------------------------------------------- /blobdbgen/src/main/resources/META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider: -------------------------------------------------------------------------------- 1 | coredev.BlobDbEntityProcessorProvider -------------------------------------------------------------------------------- /composeApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.podspec 2 | src/google-services.json -------------------------------------------------------------------------------- /composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /composeApp/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.incremental.native=true -------------------------------------------------------------------------------- /composeApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/proguard-rules.pro -------------------------------------------------------------------------------- /composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/BugReportService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/BugReportService.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/GoogleAuthUtil.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/GoogleAuthUtil.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/MainActivity.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/MainApplication.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/PermissionRequestHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/PermissionRequestHandler.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/SyncWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/SyncWorker.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/api/BugReports.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/api/BugReports.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/di/androidDefaultModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/di/androidDefaultModule.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/push/PushMessaging.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/push/PushMessaging.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/ui/screens/BugReport.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/ui/screens/BugReport.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/coredevices/coreapp/util/logging.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/kotlin/coredevices/coreapp/util/logging.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/androidMain/res/xml/filepaths.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/CommonAppDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/CommonAppDelegate.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/GoogleAuthUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/GoogleAuthUtil.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugApi.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugReports.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugReports.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugReportsService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/api/BugReportsService.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/api/PushService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/api/PushService.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/di/apiModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/di/apiModule.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/di/utilModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/di/utilModule.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/push/PushMessaging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/push/PushMessaging.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/App.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/navigation/AppNavHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/navigation/AppNavHost.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/navigation/CoreDeepLinkHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/navigation/CoreDeepLinkHandler.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportsListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/BugReportsListScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/OnboardingScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/OnboardingScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/ViewBugReportScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/ui/screens/ViewBugReportScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/coredevices/coreapp/util/logging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/commonMain/kotlin/coredevices/coreapp/util/logging.kt -------------------------------------------------------------------------------- /composeApp/src/google-services-dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/google-services-dummy.json -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/GoogleAuthUtil.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/GoogleAuthUtil.ios.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/IOSDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/IOSDelegate.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/MainViewController.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/api/BugReports.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/api/BugReports.ios.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/di/iosDefaultModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/di/iosDefaultModule.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/push/PushMessaging.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/push/PushMessaging.ios.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/ui/screens/BugReport.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/ui/screens/BugReport.ios.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/ui/screens/BugReportProcessor.ios.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/coredevices/coreapp/util/logging.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/composeApp/src/iosMain/kotlin/coredevices/coreapp/util/logging.ios.kt -------------------------------------------------------------------------------- /experimental/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/experimental/build.gradle.kts -------------------------------------------------------------------------------- /experimental/src/commonMain/kotlin/coredevices/ExperimentalDevices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/experimental/src/commonMain/kotlin/coredevices/ExperimentalDevices.kt -------------------------------------------------------------------------------- /experimental/src/commonMain/kotlin/coredevices/experimentalModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/experimental/src/commonMain/kotlin/coredevices/experimentalModule.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/.gitignore: -------------------------------------------------------------------------------- 1 | Pods/* 2 | /GitVersion.h 3 | iosApp/cactus.xcframework -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/Podfile -------------------------------------------------------------------------------- /iosApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/Podfile.lock -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /iosApp/iosApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/AppDelegate.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/LaunchBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Assets.xcassets/LaunchBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /iosApp/iosApp/iosApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/iosApp/iosApp/iosApp.entitlements -------------------------------------------------------------------------------- /libpebble3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/.gitignore -------------------------------------------------------------------------------- /libpebble3/Package.swift.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/Package.swift.template -------------------------------------------------------------------------------- /libpebble3/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/build.gradle.kts -------------------------------------------------------------------------------- /libpebble3/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/consumer-rules.pro -------------------------------------------------------------------------------- /libpebble3/libpebble-swift/LibPebbleSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/libpebble-swift/LibPebbleSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libpebble3/libpebble-swift/LibPebbleSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/libpebble-swift/LibPebbleSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /libpebble3/libpebble-swift/LibPebbleSwift/IOSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/libpebble-swift/LibPebbleSwift/IOSLocation.h -------------------------------------------------------------------------------- /libpebble3/libpebble-swift/LibPebbleSwift/IOSLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/libpebble-swift/LibPebbleSwift/IOSLocation.swift -------------------------------------------------------------------------------- /libpebble3/libpebble-swift/LibPebbleSwift/LibPebbleSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/libpebble-swift/LibPebbleSwift/LibPebbleSwift.h -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/1.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/10.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/11.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/12.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/13.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/14.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/15.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/16.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/17.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/18.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/19.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/2.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/20.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/21.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/22.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/23.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/24.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/25.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/26.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/3.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/4.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/5.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/6.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/7.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/8.json -------------------------------------------------------------------------------- /libpebble3/schema/io.rebble.libpebblecommon.database.Database/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/schema/io.rebble.libpebblecommon.database.Database/9.json -------------------------------------------------------------------------------- /libpebble3/src/androidInstrumentedTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidInstrumentedTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /libpebble3/src/androidMain/assets/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/assets/startup.js -------------------------------------------------------------------------------- /libpebble3/src/androidMain/assets/webview_startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/assets/webview_startup.html -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calendar/AndroidSystemCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calendar/AndroidSystemCalendar.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/AndroidPhoneReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/AndroidPhoneReceiver.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/AndroidSystemCallLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/AndroidSystemCallLog.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/LibPebbleInCallService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/calls/LibPebbleInCallService.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/contacts/AndroidSystemContacts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/contacts/AndroidSystemContacts.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/database/Database.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/database/Database.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewGeolocationInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewGeolocationInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewJSLocalStorageInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewJSLocalStorageInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewJsRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewJsRunner.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewPKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewPKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewPrivatePKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/js/WebViewPrivatePKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/locker/Locker.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/locker/Locker.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/music/AndroidSystemMusicControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/music/AndroidSystemMusicControl.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotification.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotificationAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotificationAction.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotificationListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/LibPebbleNotificationListener.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationAppsSync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationAppsSync.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationHandler.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationProcessor.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/NotificationResult.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/processor/NotificationProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/notification/processor/NotificationProperties.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleDictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleDictionary.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitClassic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitClassic.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitClassicStartListeners.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitClassicStartListeners.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitProvider.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitProviderNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleKitProviderNotifier.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleTuple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/pebblekit/PebbleTuple.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/AndroidSystemGeolocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/AndroidSystemGeolocation.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/OtherPebbleAndroidApps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/OtherPebbleAndroidApps.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/TempFile.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/util/TempFile.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.android.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/main.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/util/Bitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/util/Bitmap.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/util/BroadcastReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/util/BroadcastReceiver.kt -------------------------------------------------------------------------------- /libpebble3/src/androidMain/kotlin/util/DataBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/androidMain/kotlin/util/DataBuffer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/ErrorTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/ErrorTracker.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/Housekeeping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/Housekeeping.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/LibPebbleAnalytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/LibPebbleAnalytics.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/LibPebbleConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/LibPebbleConfig.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/Logging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/Logging.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/PacketPriority.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/PacketPriority.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/SystemAppIDs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/SystemAppIDs.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/CalendarEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/CalendarEvent.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/PhoneCalendarSyncer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/PhoneCalendarSyncer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/SystemCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calendar/SystemCalendar.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/BlockedReason.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/BlockedReason.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/Call.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/Call.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/LegacyPhoneReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/LegacyPhoneReceiver.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/MissedCall.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/MissedCall.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/MissedCallSyncer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/MissedCallSyncer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/SystemCallLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/calls/SystemCallLog.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/CompanionApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/CompanionApp.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionException.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/FakeLibPebble.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/FakeLibPebble.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/LibPebble.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/LibPebble.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Negotiator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Negotiator.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleProtocolHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleProtocolHandler.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleProtocolRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PebbleProtocolRunner.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PlatformIdentifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/PlatformIdentifier.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/RealPebbleDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/RealPebbleDevice.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Scanning.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Scanning.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Transport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/Transport.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/TransportConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/TransportConnector.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/WatchManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/WatchManager.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/BlePlatformConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/BlePlatformConfig.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/BatteryWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/BatteryWatcher.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/ConnectionParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/ConnectionParams.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/GATTPacket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/GATTPacket.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/LEConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/LEConstants.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/Mtu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/Mtu.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleLeScanRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleLeScanRecord.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebblePairing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebblePairing.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PpogClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PpogClient.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PpogServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PpogServer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoG.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoG.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoGPacket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoGPacket.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/BleScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/BleScanner.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattClient.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/ClientMessageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/ClientMessageType.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/ServerMessageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/ServerMessageType.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/packets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/devconnection/packets.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/AppFetchProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/AppFetchProvider.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/AppOrderManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/AppOrderManager.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/FirmwareUpdater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/FirmwareUpdater.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/blobdb/BlobDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/blobdb/BlobDB.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/contacts/PhoneContactsSyncer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/contacts/PhoneContactsSyncer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/BlobDbDatabaseManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/BlobDbDatabaseManager.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/Database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/Database.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/RoomTypeConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/RoomTypeConverters.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/BlobDbSourceDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/BlobDbSourceDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/CalendarDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/CalendarDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/ContactDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/ContactDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/KnownWatchDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/KnownWatchDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/LockerAppPermissionDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/LockerAppPermissionDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/LockerEntryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/LockerEntryDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/NotificationAppDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/NotificationAppDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/NotificationDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/NotificationDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelineNotiifcationRealDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelineNotiifcationRealDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelinePinRealDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelinePinRealDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelineReminderRealDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/TimelineReminderRealDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/VibePatternDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/dao/VibePatternDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/CalendarEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/CalendarEntity.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/ContactEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/ContactEntity.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/KnownWatchItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/KnownWatchItem.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/LockerAppPermission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/LockerAppPermission.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/LockerEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/LockerEntry.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/NotificationAppEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/NotificationAppEntity.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/NotificationEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/NotificationEntity.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/TimelineItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/TimelineItem.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/TimelineItemDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/TimelineItemDsl.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/VibePatternEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/VibePatternEntity.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/WatchSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/database/entity/WatchSettings.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/datalogging/Datalogging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/datalogging/Datalogging.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/PbwBinHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/PbwBinHeader.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbw/DiskUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbw/DiskUtil.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbw/PbwApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbw/PbwApp.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbz/DiskUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbz/DiskUtil.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbz/PbzFirmware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/disk/pbz/PbzFirmware.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/exceptions/packet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/exceptions/packet.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/health/Health.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/health/Health.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/ActivePebbleWatchInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/ActivePebbleWatchInfo.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/CompanionAppDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/CompanionAppDevice.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/GeolocationInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/GeolocationInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsRunner.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsTokenUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/JsTokenUtil.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PKJSApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PKJSApp.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PrivatePKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/PrivatePKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/RemoteTimelineEmulator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/js/RemoteTimelineEmulator.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/Locker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/Locker.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/LockerWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/LockerWrapper.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/SystemApps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/locker/SystemApps.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/main.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/StringOrBoolean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/StringOrBoolean.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchColor.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchHardwarePlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchHardwarePlatform.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchType.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Media.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/PbwAppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/PbwAppInfo.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Resources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Resources.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Watchapp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/Watchapp.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/Debug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/Debug.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/PbwBlob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/PbwBlob.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/PbwManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/PbwManifest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/SdkVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/SdkVersion.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/JsTooling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/JsTooling.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/PbzManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/PbzManifest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/PbzManifestFirmware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/PbzManifestFirmware.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/SystemResources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/pbz/manifest/SystemResources.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/MusicAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/MusicAction.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/PlaybackState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/PlaybackState.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/RepeatType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/RepeatType.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/SystemMusicControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/music/SystemMusicControl.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/ContactsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/ContactsApi.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/DefaultVibePattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/DefaultVibePattern.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/NotificationDecision.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/NotificationDecision.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppCustomization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppCustomization.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppFetch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppFetch.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppLog.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppMessage.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppReorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppReorder.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppRunState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/AppRunState.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Audio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Audio.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/DataLogging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/DataLogging.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Emulator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Emulator.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/GetBytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/GetBytes.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/LogDump.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/LogDump.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Music.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Music.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/PhoneControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/PhoneControl.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/PutBytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/PutBytes.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Reset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Reset.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Screenshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Screenshot.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Voice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/Voice.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/App.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/BlobDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/BlobDB.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/BlobDB2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/BlobDB2.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/Notification.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/Timeline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/Timeline.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/TimelineIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/blobdb/TimelineIcon.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/PacketRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/PacketRegistry.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/PebblePacket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/PebblePacket.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/ProtocolEndpoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/protocolhelpers/ProtocolEndpoint.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppFetchService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppFetchService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppLogService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppLogService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppReorderService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AppReorderService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AudioStreamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/AudioStreamService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/DataLoggingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/DataLoggingService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/GetBytesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/GetBytesService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/LogDumpService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/LogDumpService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/MusicService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/MusicService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/PhoneControlService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/PhoneControlService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/ProtocolService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/ProtocolService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/PutBytesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/PutBytesService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/ScreenshotService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/ScreenshotService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/SystemService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/SystemService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/VoiceService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/VoiceService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/app/AppRunStateService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/app/AppRunStateService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/appmessage/AppMessageService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/appmessage/AppMessageService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/blobdb/BlobDBService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/blobdb/BlobDBService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/blobdb/TimelineService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/services/blobdb/TimelineService.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/StructMappable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/StructMappable.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/StructMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/StructMapper.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/structmapper/types.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/timeline/TimelineApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/timeline/TimelineApi.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/timeline/TimelineColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/timeline/TimelineColor.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Cookie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Cookie.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Crc32Calculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Crc32Calculator.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/DataBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/DataBuffer.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Endian.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/Endian.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/LazyLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/LazyLock.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PacketSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PacketSize.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PebbleColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PebbleColor.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PrivateLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/PrivateLogger.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/SerializationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/SerializationUtil.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/SystemGeolocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/SystemGeolocation.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/TempFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/TempFile.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/TimelineAttributeFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/TimelineAttributeFactory.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/UtilFunctions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/util/UtilFunctions.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionProvider.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionResult.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionWord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/TranscriptionWord.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/VoiceEncoderInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/voice/VoiceEncoderInfo.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/FirmwareUpdateManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/FirmwareUpdateManager.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/LockerModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/LockerModel.kt -------------------------------------------------------------------------------- /libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/WebSyncManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonMain/kotlin/io/rebble/libpebblecommon/web/WebSyncManager.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/TestPebbleProtocolHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/TestPebbleProtocolHandler.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/TestUtils.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/Tests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/Tests.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/connection/FakeAppMessages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/connection/FakeAppMessages.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/connection/LockerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/connection/LockerTest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/database/dao/FakeLockerEntryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/database/dao/FakeLockerEntryDao.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/TestAppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/metadata/pbw/appinfo/TestAppInfo.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/TestManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/metadata/pbw/manifest/TestManifest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/AppMessageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/AppMessageTest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/AppRunStateMessageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/AppRunStateMessageTest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/SystemMessageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/SystemMessageTest.kt -------------------------------------------------------------------------------- /libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/blobdb/AppTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/commonTest/kotlin/io/rebble/libpebblecommon/packets/blobdb/AppTest.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calendar/IosSystemCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calendar/IosSystemCalendar.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calls/IosLegacyPhoneReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calls/IosLegacyPhoneReceiver.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calls/IosSystemCallLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/calls/IosSystemCallLog.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/contacts/IosSystemContacts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/contacts/IosSystemContacts.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/database/Database.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/database/Database.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCGeolocationInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCGeolocationInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCJSLocalStorageInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCJSLocalStorageInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCPKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCPKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCPrivatePKJSInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSCPrivatePKJSInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSError.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSTimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSTimeout.js -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSTimeout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JSTimeout.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JavascriptCoreJsRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JavascriptCoreJsRunner.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JsCoreExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JsCoreExtensions.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/RegisterableJsInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/RegisterableJsInterface.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/XMLHTTPRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/XMLHTTPRequest.js -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/XMLHTTPRequestManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/js/XMLHTTPRequestManager.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/locker/Locker.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/locker/Locker.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/music/IosSystemMusicControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/music/IosSystemMusicControl.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/IosSystemGeolocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/IosSystemGeolocation.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/OtherPebbleIosApps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/OtherPebbleIosApps.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/TempFile.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/util/TempFile.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/main.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/util/DataBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/util/DataBuffer.kt -------------------------------------------------------------------------------- /libpebble3/src/iosMain/kotlin/util/UtilFunctions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosMain/kotlin/util/UtilFunctions.kt -------------------------------------------------------------------------------- /libpebble3/src/iosTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/iosTest/kotlin/io/rebble/libpebblecommon/js/PKJSRunnerTests.ios.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/jvmMain.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/jvmMain.iml -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/AppContext.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/ConnectionFailureHandler.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/PebbleDevice.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/BluetoothState.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/Pairing.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/pebble/PebbleBle.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/connection/bt/ble/transport/GattServer.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/database/Database.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/database/Database.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/di/PKJSModule.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/js/JSLocalStorageInterface.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/js/JsRunnerFactory.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/locker/Locker.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/locker/Locker.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/notification/PlatformNotificationListener.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/time/TimeChanged.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/Bitmap.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/BitmapUtil.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/TempFile.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/util/TempFile.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/io/rebble/libpebblecommon/web/FirmwareDownloader.jvm.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/main.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmMain/kotlin/util/DataBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmMain/kotlin/util/DataBuffer.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/jvmTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/jvmTest.iml -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/DeviceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/DeviceTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/JvmTestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/JvmTestUtils.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/WatchManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/WatchManagerTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoGTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/bt/ble/ppog/PPoGTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/disk/pbz/PbzFirmwareTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/disk/pbz/PbzFirmwareTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/packets/MusicTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/packets/MusicTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/services/FirmwareVersionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/services/FirmwareVersionTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/services/SystemServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/services/SystemServiceTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/util/CrcCalculatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/kotlin/io/rebble/libpebblecommon/util/CrcCalculatorTest.kt -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/resources/normal_asterix_test.pbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/resources/normal_asterix_test.pbz -------------------------------------------------------------------------------- /libpebble3/src/jvmTest/resources/normal_obelix_test.pbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/jvmTest/resources/normal_obelix_test.pbz -------------------------------------------------------------------------------- /libpebble3/src/nativeInterop/cinterop/libPebbleSwift.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebble3/src/nativeInterop/cinterop/libPebbleSwift.def -------------------------------------------------------------------------------- /libpebblecommon.iosMain.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebblecommon.iosMain.iml -------------------------------------------------------------------------------- /libpebblecommon.iosTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/libpebblecommon.iosTest.iml -------------------------------------------------------------------------------- /pebble/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /pebble/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/build.gradle.kts -------------------------------------------------------------------------------- /pebble/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/consumer-rules.pro -------------------------------------------------------------------------------- /pebble/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/PebbleAndroidDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/PebbleAndroidDelegate.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/account/BootConfig.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/account/BootConfig.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/services/CactusTranscription.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/services/CactusTranscription.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/PreviewUtil.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/PreviewUtil.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchDebug.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchDebug.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchFirmwareSideload.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchFirmwareSideload.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchesScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/ui/WatchesScreen.android.kt -------------------------------------------------------------------------------- /pebble/src/androidMain/kotlin/coredevices/pebble/watchModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/androidMain/kotlin/coredevices/pebble/watchModule.android.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/PebbleAppDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/PebbleAppDelegate.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/PebbleFeatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/PebbleFeatures.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/account/BootConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/account/BootConfig.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/account/FirestoreLocker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/account/FirestoreLocker.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/account/GithubAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/account/GithubAccount.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/account/PebbleAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/account/PebbleAccount.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/firmware/Cohorts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/firmware/Cohorts.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateCheck.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/rememberLibPebble.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/rememberLibPebble.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/AppstoreService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/AppstoreService.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/CactusTranscription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/CactusTranscription.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/Github.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/Github.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/LanguagePackRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/LanguagePackRepository.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/Memfault.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/Memfault.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/NullTranscriptionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/NullTranscriptionProvider.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/OAuthService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/OAuthService.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/services/PebbleWebServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/services/PebbleWebServices.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppStoreCollectionScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppStoreCollectionScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppStoreScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppStoreScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppstoreSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/AppstoreSettingsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/CalendarScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/CalendarScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/Colors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/Colors.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/DebugFirmwareSideload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/DebugFirmwareSideload.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/Icons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/Icons.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerAppScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerAppScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerImportDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerImportDialog.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/LockerScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationAppScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationAppScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationAppsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationAppsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationContactsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationContactsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationHistoryScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationHistoryScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationRulesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationRulesScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationViewerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationViewerScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/NotificationsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/PebbleRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/PebbleRoutes.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/PermissionsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/PermissionsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/PreviewUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/PreviewUtil.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/Vibrations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/Vibrations.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchHomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchHomeScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/ui/WatchesScreen.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/watchModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/watchModule.kt -------------------------------------------------------------------------------- /pebble/src/commonMain/kotlin/coredevices/pebble/weather/WeatherFetcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonMain/kotlin/coredevices/pebble/weather/WeatherFetcher.kt -------------------------------------------------------------------------------- /pebble/src/commonTest/kotlin/coredevices/pebble/PebbleDeepLinkHandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonTest/kotlin/coredevices/pebble/PebbleDeepLinkHandlerTest.kt -------------------------------------------------------------------------------- /pebble/src/commonTest/kotlin/coredevices/pebble/services/MemfaultTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonTest/kotlin/coredevices/pebble/services/MemfaultTest.kt -------------------------------------------------------------------------------- /pebble/src/commonTest/kotlin/coredevices/pebble/weather/WeatherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/commonTest/kotlin/coredevices/pebble/weather/WeatherTest.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/PebbleDeepLinkHandler.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/PebbleIosDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/PebbleIosDelegate.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/account/BootConfig.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/account/BootConfig.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/firmware/FirmwareUpdateUiTracker.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/services/CactusTranscription.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/services/CactusTranscription.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/PreviewUtil.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/PreviewUtil.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchDebug.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchDebug.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchFirmwareSideload.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchFirmwareSideload.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchSettingsScreen.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchappSettingsScreen.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchesScreen.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/ui/WatchesScreen.ios.kt -------------------------------------------------------------------------------- /pebble/src/iosMain/kotlin/coredevices/pebble/watchModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/pebble/src/iosMain/kotlin/coredevices/pebble/watchModule.ios.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/androidMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/src/androidMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.android.kt -------------------------------------------------------------------------------- /src/iosMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/src/iosMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.ios.kt -------------------------------------------------------------------------------- /src/jvmMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/src/jvmMain/kotlin/io/rebble/libpebblecommon/di/LibPebbleModule.jvm.kt -------------------------------------------------------------------------------- /src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/blobdb/NotificationAppsDbTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/src/jvmTest/kotlin/io/rebble/libpebblecommon/connection/endpointmanager/blobdb/NotificationAppsDbTest.kt -------------------------------------------------------------------------------- /util/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /util/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/build.gradle.kts -------------------------------------------------------------------------------- /util/schema/coredevices.database.CoreDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/schema/coredevices.database.CoreDatabase/1.json -------------------------------------------------------------------------------- /util/schema/coredevices.database.CoreDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/schema/coredevices.database.CoreDatabase/2.json -------------------------------------------------------------------------------- /util/schema/coredevices.database.CoreDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/schema/coredevices.database.CoreDatabase/3.json -------------------------------------------------------------------------------- /util/schema/coredevices.database.CoreDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/schema/coredevices.database.CoreDatabase/4.json -------------------------------------------------------------------------------- /util/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /util/src/androidMain/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/ic_launcher-playstore.png -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/AppUpdate.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/AppUpdate.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/PlatformContext.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/PlatformContext.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/PlatformShareLauncher.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/PlatformShareLauncher.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/RememberDocumentLauncher.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/RememberDocumentLauncher.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/Url.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/Url.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/context.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/analytics/Analytics.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/analytics/Analytics.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/database/CoreDatabase.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/database/CoreDatabase.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/ui/ModelDownloadDialog.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/ui/ModelDownloadDialog.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/ui/PebbleWebview.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/ui/PebbleWebview.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/AndroidCompanionDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/AndroidCompanionDevice.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/AndroidPermissionRequester.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/AndroidPermissionRequester.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/Cactus.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/Cactus.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/PermissionRequester.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/PermissionRequester.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/Platform.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/PlatformBondingListener.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/PlatformBondingListener.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/coredevices/util/context.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/coredevices/util/context.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/kotlin/theme/Theme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/kotlin/theme/Theme.android.kt -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /util/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /util/src/androidMain/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/androidMain/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/drawable/assistant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/drawable/assistant.xml -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/drawable/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/drawable/core.xml -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/drawable/notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/drawable/notes.xml -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/drawable/waveform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/drawable/waveform.xml -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/font/Inter-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/font/Inter-Italic.ttf -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/font/Inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/font/Inter.ttf -------------------------------------------------------------------------------- /util/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/AppUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/AppUpdate.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/AppUpdateTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/AppUpdateTracker.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/BugReportButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/BugReportButton.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/CommonApiConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/CommonApiConfig.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/CommonRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/CommonRoutes.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/CoreAppVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/CoreAppVersion.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/CoreIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/CoreIcons.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/DocumentAttachment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/DocumentAttachment.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/PathUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/PathUtil.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/PlatformContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/PlatformContext.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/PlatformShareLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/PlatformShareLauncher.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/RememberDocumentLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/RememberDocumentLauncher.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/CoreBackgroundSync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/CoreBackgroundSync.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/EnableExperimentalDevices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/EnableExperimentalDevices.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/analytics/AnalyticsBackend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/analytics/AnalyticsBackend.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/analytics/CoreAnalytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/analytics/CoreAnalytics.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/api/ApiAuthException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/api/ApiAuthException.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/api/ApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/api/ApiClient.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/AppstoreCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/AppstoreCollection.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/AppstoreSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/AppstoreSource.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/CoreDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/CoreDatabase.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/HeartbeatEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/HeartbeatEntity.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/UserConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/UserConfig.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/database/UserConfigDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/database/UserConfigDao.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/ui/Components.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/ui/Components.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/ui/GenericWebViewScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/ui/GenericWebViewScreen.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/ui/M3Dialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/ui/M3Dialog.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/ui/ModelDownloadDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/ui/ModelDownloadDialog.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/ui/PebbleWebview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/ui/PebbleWebview.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/AppResumed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/AppResumed.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/Cactus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/Cactus.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/CompanionDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/CompanionDevice.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/CoreConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/CoreConfig.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/DoneInitialOnboarding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/DoneInitialOnboarding.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/FirebaseAuth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/FirebaseAuth.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/GCloudTranscription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/GCloudTranscription.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/GoogAuthUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/GoogAuthUtil.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/Permission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/Permission.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/PermissionRequester.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/PermissionRequester.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/Platform.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/PlatformBondingListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/PlatformBondingListener.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/context.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/coredevices/util/files.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/coredevices/util/files.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/theme/Color.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/theme/ExtendedColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/theme/ExtendedColors.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/theme/Theme.kt -------------------------------------------------------------------------------- /util/src/commonMain/kotlin/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonMain/kotlin/theme/Type.kt -------------------------------------------------------------------------------- /util/src/commonTest/kotlin/coredevices/analytics/CoreAnalyticsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/commonTest/kotlin/coredevices/analytics/CoreAnalyticsTest.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/AppUpdate.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/AppUpdate.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/PlatformContext.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/PlatformContext.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/PlatformShareLauncher.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/PlatformShareLauncher.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/RememberDocumentLauncher.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/RememberDocumentLauncher.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/database/CoreDatabase.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/database/CoreDatabase.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/ui/ModelDownloadDialog.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/ui/ModelDownloadDialog.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/ui/PebbleWebview.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/ui/PebbleWebview.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/Cactus.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/Cactus.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/IosCompanionDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/IosCompanionDevice.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/IosPermissionRequester.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/IosPermissionRequester.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/NSData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/NSData.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/PermissionRequester.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/PermissionRequester.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/Platform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/Platform.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/PlatformBondingListener.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/PlatformBondingListener.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/coredevices/util/context.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/coredevices/util/context.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/path.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/path.ios.kt -------------------------------------------------------------------------------- /util/src/iosMain/kotlin/theme/Theme.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredevices/mobileapp/HEAD/util/src/iosMain/kotlin/theme/Theme.ios.kt --------------------------------------------------------------------------------