├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-report.yml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── release.yml └── workflows │ ├── android_pr_check.yml │ ├── create_desktop_builds.yml │ ├── desktop_pr_check.yml │ ├── docs.yml │ ├── publish_android.yml │ └── release.yml ├── .gitignore ├── FloconAndroid ├── .gitignore ├── .idea │ └── appInsightsSettings.xml ├── build.gradle.kts ├── datastores-no-op │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── preferences │ │ └── datastores │ │ └── model │ │ └── FloconDatastorePreference.kt ├── datastores │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── preferences │ │ └── datastores │ │ └── model │ │ └── FloconDatastorePreference.kt ├── flocon-base │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── FloconLogger.kt │ │ │ └── utils │ │ │ └── PlatformUtils.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── FloconApp.kt │ │ │ ├── FloconLogger.kt │ │ │ ├── plugins │ │ │ ├── analytics │ │ │ │ ├── FloconAnalyticsPlugin.kt │ │ │ │ ├── builder │ │ │ │ │ └── AnalyticsBuilder.kt │ │ │ │ └── model │ │ │ │ │ ├── AnalyticsEvent.kt │ │ │ │ │ ├── AnalyticsPropertiesConfig.kt │ │ │ │ │ └── TableItem.kt │ │ │ ├── crashreporter │ │ │ │ └── FloconCrashReporterPlugin.kt │ │ │ ├── dashboard │ │ │ │ ├── FloconDashboardPlugin.kt │ │ │ │ ├── builder │ │ │ │ │ ├── ContainerBuilder.kt │ │ │ │ │ ├── DashboardBuilder.kt │ │ │ │ │ ├── FormBuilder.kt │ │ │ │ │ └── SectionBuilder.kt │ │ │ │ ├── dsl │ │ │ │ │ ├── ButtonDsl.kt │ │ │ │ │ ├── CheckBoxDsl.kt │ │ │ │ │ ├── DashboardDsl.kt │ │ │ │ │ ├── FormDsl.kt │ │ │ │ │ ├── HtmlDsl.kt │ │ │ │ │ ├── MarkdownDsl.kt │ │ │ │ │ ├── PlainTextDsl.kt │ │ │ │ │ ├── SectionDsl.kt │ │ │ │ │ ├── TextDsl.kt │ │ │ │ │ └── TextField.kt │ │ │ │ └── model │ │ │ │ │ ├── ContainerType.kt │ │ │ │ │ ├── Dashboard.kt │ │ │ │ │ ├── DashboardScope.kt │ │ │ │ │ └── config │ │ │ │ │ ├── ButtonConfig.kt │ │ │ │ │ ├── CheckBoxConfig.kt │ │ │ │ │ ├── ContainerConfig.kt │ │ │ │ │ ├── ElementConfig.kt │ │ │ │ │ ├── FormConfig.kt │ │ │ │ │ ├── HtmlConfig.kt │ │ │ │ │ ├── LabelConfig.kt │ │ │ │ │ ├── MarkdownConfig.kt │ │ │ │ │ ├── PlainTextConfig.kt │ │ │ │ │ ├── SectionConfig.kt │ │ │ │ │ ├── TextConfig.kt │ │ │ │ │ └── TextFieldConfig.kt │ │ │ ├── database │ │ │ │ ├── FloconDatabasePlugin.kt │ │ │ │ └── model │ │ │ │ │ └── FloconDatabaseModel.kt │ │ │ ├── deeplinks │ │ │ │ ├── FloconDeeplinksPlugin.kt │ │ │ │ └── model │ │ │ │ │ └── DeeplinkModel.kt │ │ │ ├── device │ │ │ │ └── FloconDevicePlugin.kt │ │ │ ├── files │ │ │ │ └── FloconFilesPlugin.kt │ │ │ ├── network │ │ │ │ ├── FloconNetworkPlugin.kt │ │ │ │ └── model │ │ │ │ │ ├── BadQualityConfig.kt │ │ │ │ │ ├── FloconHttpRequest.kt │ │ │ │ │ ├── FloconNetworkCallRequest.kt │ │ │ │ │ ├── FloconNetworkCallResponse.kt │ │ │ │ │ ├── FloconWebSocketEvent.kt │ │ │ │ │ ├── FloconWebSocketMockListener.kt │ │ │ │ │ └── MockNetworkResponse.kt │ │ │ ├── sharedprefs │ │ │ │ ├── FloconSharedPrefsPlugin.kt │ │ │ │ └── model │ │ │ │ │ └── FloconPreference.kt │ │ │ └── tables │ │ │ │ ├── FloconTablesPlugin.kt │ │ │ │ ├── builder │ │ │ │ └── TableBuilder.kt │ │ │ │ └── model │ │ │ │ ├── TableColumnConfig.kt │ │ │ │ └── TableItem.kt │ │ │ └── utils │ │ │ └── PlatformUtils.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── FloconLogger.kt │ │ │ └── utils │ │ │ └── PlatformUtils.ios.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ ├── FloconLogger.kt │ │ └── utils │ │ └── PlatformUtils.jvm.kt ├── flocon-no-op │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── Flocon.android.kt │ │ │ └── plugins │ │ │ ├── database │ │ │ └── floconRegisterDatabase.kt │ │ │ └── sharedprefs │ │ │ └── FloconSharedPreference.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── Flocon.kt │ │ │ └── plugins │ │ │ └── dashboard │ │ │ └── FloconDashboardDSL.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── Flocon.ios.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── Flocon.jvm.kt ├── flocon │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── openflocon │ │ │ │ └── flocon │ │ │ │ ├── Flocon.kt │ │ │ │ ├── FloconBroadcastReceiver.kt │ │ │ │ ├── FloconCore.android.kt │ │ │ │ ├── FloconFile.android.kt │ │ │ │ ├── ServerHost.android.kt │ │ │ │ ├── core │ │ │ │ └── AppInfos.android.kt │ │ │ │ ├── plugins │ │ │ │ ├── crashreporter │ │ │ │ │ ├── FloconCrashReporterDataSource.android.kt │ │ │ │ │ └── UncaughtExceptionHandler.android.kt │ │ │ │ ├── database │ │ │ │ │ ├── FloconDatabasePlugin.android.kt │ │ │ │ │ └── FloconSqliteDatabaseModel.kt │ │ │ │ ├── device │ │ │ │ │ ├── FloconDevicePluginImpl.android.kt │ │ │ │ │ └── GetAppIconUtils.android.kt │ │ │ │ ├── files │ │ │ │ │ └── FloconFilesPlugin.android.kt │ │ │ │ ├── network │ │ │ │ │ └── FloconNetworkPluginImpl.android.kt │ │ │ │ └── sharedprefs │ │ │ │ │ ├── FloconSharedPreference.kt │ │ │ │ │ ├── FloconSharedPrefsPlugin.android.kt │ │ │ │ │ └── SharedPreferencesFinder.kt │ │ │ │ ├── utils │ │ │ │ ├── AppUtils.kt │ │ │ │ └── NetUtils.kt │ │ │ │ └── websocket │ │ │ │ ├── FloconHttpClient.android.kt │ │ │ │ ├── FloconHttpClientAndroid.kt │ │ │ │ └── FloconWebSocketClient.android.kt │ │ └── res │ │ │ └── xml │ │ │ └── network_security_config.xml │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── FloconCore.kt │ │ │ ├── FloconFile.kt │ │ │ ├── Protocol.kt │ │ │ ├── ServerHost.kt │ │ │ ├── client │ │ │ └── FloconClientImpl.kt │ │ │ ├── core │ │ │ ├── AppInfos.kt │ │ │ ├── FloconEncoder.kt │ │ │ ├── FloconFileSender.kt │ │ │ ├── FloconMessageSender.kt │ │ │ └── FloconPlugin.kt │ │ │ ├── model │ │ │ ├── FloconFileInfo.kt │ │ │ ├── FloconMessageFromServer.kt │ │ │ └── FloconMessageToServer.kt │ │ │ ├── plugins │ │ │ ├── analytics │ │ │ │ ├── FloconAnalyticsPlugin.kt │ │ │ │ └── mapper │ │ │ │ │ └── AnalyticsItemsMapper.kt │ │ │ ├── crashreporter │ │ │ │ ├── FloconCrashReporterDataSource.kt │ │ │ │ ├── FloconCrashReporterPlugin.kt │ │ │ │ └── model │ │ │ │ │ ├── CrashReportDataModel.kt │ │ │ │ │ └── CrashReportMapper.kt │ │ │ ├── dashboard │ │ │ │ ├── FloconDashboardDSL.kt │ │ │ │ ├── FloconDashboardPlugin.kt │ │ │ │ ├── mapper │ │ │ │ │ └── JsonMapper.kt │ │ │ │ └── model │ │ │ │ │ ├── DashboardCallback.kt │ │ │ │ │ └── todevice │ │ │ │ │ ├── ToDeviceCheckBoxValueChangedMessage.kt │ │ │ │ │ ├── ToDeviceSubmittedFormMessage.kt │ │ │ │ │ └── ToDeviceSubmittedTextFieldMessage.kt │ │ │ ├── database │ │ │ │ ├── FloconDatabasePlugin.kt │ │ │ │ └── model │ │ │ │ │ ├── fromdevice │ │ │ │ │ ├── DatabaseExecuteSqlResponse.kt │ │ │ │ │ ├── DeviceDataBaseDataModel.kt │ │ │ │ │ └── QueryResultReceivedDataModel.kt │ │ │ │ │ └── todevice │ │ │ │ │ └── DatabaseQueryMessage.kt │ │ │ ├── deeplinks │ │ │ │ ├── FloconDeeplinksPlugin.kt │ │ │ │ ├── Mapping.kt │ │ │ │ └── model │ │ │ │ │ └── DeeplinksRemote.kt │ │ │ ├── device │ │ │ │ ├── FloconDevicePluginImpl.kt │ │ │ │ ├── GetAppIconUtils.kt │ │ │ │ └── model │ │ │ │ │ └── fromdevice │ │ │ │ │ └── RegisterDeviceDataModel.kt │ │ │ ├── files │ │ │ │ ├── FloconFilesPlugin.kt │ │ │ │ └── model │ │ │ │ │ ├── fromdevice │ │ │ │ │ ├── FileDataModel.kt │ │ │ │ │ └── FilesResultDataModel.kt │ │ │ │ │ └── todevice │ │ │ │ │ ├── ToDeviceDeleteFileMessage.kt │ │ │ │ │ ├── ToDeviceDeleteFolderContentMessage.kt │ │ │ │ │ ├── ToDeviceGetFileMessage.kt │ │ │ │ │ └── ToDeviceGetFilesMessage.kt │ │ │ ├── network │ │ │ │ ├── FloconNetworkPluginImpl.kt │ │ │ │ └── mapper │ │ │ │ │ ├── BadQualityToJson.kt │ │ │ │ │ ├── FloconNetworkRequestToJson.kt │ │ │ │ │ ├── MockResponseToJson.kt │ │ │ │ │ └── Websocket.kt │ │ │ ├── sharedprefs │ │ │ │ ├── FloconSharedPrefsPlugin.kt │ │ │ │ └── model │ │ │ │ │ ├── FloconPreferenceWrapper.kt │ │ │ │ │ ├── fromdevice │ │ │ │ │ ├── PreferenceRowDataModel.kt │ │ │ │ │ └── SharedPreferenceValueResultDataModel.kt │ │ │ │ │ └── todevice │ │ │ │ │ ├── ToDeviceEditSharedPreferenceValueMessage.kt │ │ │ │ │ ├── ToDeviceGetSharedPreferenceValueMessage.kt │ │ │ │ │ └── ToDeviceGetSharedPrefsMessage.kt │ │ │ └── tables │ │ │ │ ├── FloconTablesPlugin.kt │ │ │ │ └── model │ │ │ │ └── TableItem.kt │ │ │ └── websocket │ │ │ ├── FloconHttpClient.kt │ │ │ ├── FloconWebSocketClient.kt │ │ │ └── MessagesQueue.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ ├── Flocon.ios.kt │ │ │ ├── FloconCore.ios.kt │ │ │ ├── FloconFile.ios.kt │ │ │ ├── ServerHost.ios.kt │ │ │ ├── core │ │ │ └── AppInfos.ios.kt │ │ │ ├── plugins │ │ │ ├── crashreporter │ │ │ │ └── CrashReporterDataSource.kt │ │ │ ├── database │ │ │ │ └── FloconDatabasePlugin.ios.kt │ │ │ ├── device │ │ │ │ ├── FloconDevicePluginImpl.ios.kt │ │ │ │ └── GetAppIconUtils.ios.kt │ │ │ ├── files │ │ │ │ └── FloconFilesPlugin.ios.kt │ │ │ ├── network │ │ │ │ └── FloconNetworkPluginImpl.ios.kt │ │ │ └── sharedprefs │ │ │ │ └── FloconSharedPrefsPlugin.ios.kt │ │ │ └── websocket │ │ │ ├── FloconHttpClient.ios.kt │ │ │ └── FloconWebSocketClient.ios.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ ├── Flocon.jvm.kt │ │ ├── FloconCore.jvm.kt │ │ ├── FloconFile.jvm.kt │ │ ├── ServerHost.jvm.kt │ │ ├── core │ │ └── AppInfos.jvm.kt │ │ ├── plugins │ │ ├── crashreporter │ │ │ └── FloconCrashReporterDataSource.jvm.kt │ │ ├── database │ │ │ └── FloconDatabasePlugin.jvm.kt │ │ ├── device │ │ │ ├── FloconDevicePluginImpl.jvm.kt │ │ │ └── GetAppIconUtils.jvm.kt │ │ ├── files │ │ │ └── FloconFilesPlugin.jvm.kt │ │ ├── network │ │ │ └── FloconNetworkPluginImpl.jvm.kt │ │ └── sharedprefs │ │ │ └── FloconSharedPrefsPlugin.jvm.kt │ │ └── websocket │ │ ├── FloconHttpClient.jvm.kt │ │ └── FloconWebSocketClient.jvm.kt ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── grpc │ ├── grpc-interceptor-base │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── grpc │ │ │ ├── BadQuality.kt │ │ │ ├── FloconGrpcBaseFormatter.kt │ │ │ ├── FloconGrpcBaseInterceptor.kt │ │ │ ├── FloconGrpcPlugin.kt │ │ │ └── model │ │ │ ├── GrpcHeader.kt │ │ │ └── RequestHolder.kt │ ├── grpc-interceptor-lite │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── grpc │ │ │ └── lite │ │ │ ├── FloconGrpcFormatter.kt │ │ │ └── FloconGrpcInterceptor.kt │ ├── grpc-interceptor │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── grpc │ │ │ ├── FloconGrpcFormatter.kt │ │ │ └── FloconGrpcInterceptor.kt │ └── grpc-test-server │ │ ├── clone.sh │ │ └── start.sh ├── iosApp │ ├── Configuration │ │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── florentchampigny.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ └── xcuserdata │ │ │ └── florentchampigny.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── iosApp.xcscheme │ │ │ └── xcschememanagement.plist │ └── iosApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app-icon-1024.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── iOSApp.swift ├── ktor-interceptor-no-op │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── ktor │ │ └── FloconKtorPlugin.kt ├── ktor-interceptor │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── ktor │ │ ├── BadQuality.kt │ │ ├── FloconKtorPlugin.kt │ │ ├── Mocks.kt │ │ └── Utils.kt ├── okhttp-interceptor-no-op │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── okhttp │ │ ├── OkHttpInterceptor.kt │ │ └── websocket │ │ └── FloconWebSocket.kt ├── okhttp-interceptor │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── okhttp │ │ ├── BadQuality.kt │ │ ├── Mock.kt │ │ ├── OkHttpInterceptor.kt │ │ ├── Utils.kt │ │ └── websocket │ │ └── FloconWebSocket.kt ├── publishLocal.sh ├── sample-android-only │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ ├── release.jks │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── graphql │ │ ├── GetUserInfo.graphql │ │ ├── GetUserRepositories.graphql │ │ └── schema.json │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── myapplication │ │ │ ├── DummyHttpCaller.kt │ │ │ ├── DummyHttpKtorCaller.kt │ │ │ ├── DummyWebsocketCaller.kt │ │ │ ├── MainActivity.kt │ │ │ ├── dashboard │ │ │ ├── InitializeDashboard.kt │ │ │ ├── device │ │ │ │ └── Device.kt │ │ │ ├── tokens │ │ │ │ └── Tokens.kt │ │ │ └── user │ │ │ │ └── User.kt │ │ │ ├── database │ │ │ ├── DogDatabase.kt │ │ │ ├── FoodDatabase.kt │ │ │ ├── InitializeDatabases.kt │ │ │ ├── dao │ │ │ │ ├── DogDao.kt │ │ │ │ └── FoodDao.kt │ │ │ └── model │ │ │ │ ├── DogEntity.kt │ │ │ │ ├── FoodEntity.kt │ │ │ │ ├── HumanEntity.kt │ │ │ │ └── HumanWithDogEntity.kt │ │ │ ├── deeplinks │ │ │ └── InitializeDeeplinks.kt │ │ │ ├── graphql │ │ │ └── GraphQlTester.kt │ │ │ ├── grpc │ │ │ └── InitializeGrpc.kt │ │ │ ├── images │ │ │ └── InitializeImages.kt │ │ │ ├── sharedpreferences │ │ │ ├── Datastores.kt │ │ │ └── SharedPreferences.kt │ │ │ ├── table │ │ │ └── InitializeDashboard.kt │ │ │ └── ui │ │ │ ├── ImagesListView.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ ├── proto │ │ └── helloworld.proto │ │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── sample-multiplatform │ ├── README.md │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── openflocon │ │ │ │ └── flocon │ │ │ │ └── myapplication │ │ │ │ └── multi │ │ │ │ ├── Databases.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ └── sharedpreferences │ │ │ │ └── SharedPreferences.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── myapplication │ │ │ └── multi │ │ │ ├── DummyHttpKtorCaller.kt │ │ │ ├── dashboard │ │ │ ├── InitializeDashboard.kt │ │ │ ├── tokens │ │ │ │ └── Tokens.kt │ │ │ └── user │ │ │ │ └── User.kt │ │ │ ├── database │ │ │ ├── DogDatabase.kt │ │ │ ├── FoodDatabase.kt │ │ │ ├── InitializeDatabases.kt │ │ │ ├── dao │ │ │ │ ├── DogDao.kt │ │ │ │ └── FoodDao.kt │ │ │ └── model │ │ │ │ ├── DogEntity.kt │ │ │ │ ├── FoodEntity.kt │ │ │ │ ├── HumanEntity.kt │ │ │ │ └── HumanWithDogEntity.kt │ │ │ └── ui │ │ │ ├── App.kt │ │ │ └── ImagesListView.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocon │ │ │ └── myapplication │ │ │ └── multi │ │ │ └── Main.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── com │ │ │ └── florent37 │ │ │ └── myapplication │ │ │ ├── Databases.kt │ │ │ └── MainViewController.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── flocon │ │ └── myapplication │ │ └── multi │ │ └── Main.kt └── settings.gradle.kts ├── FloconDesktop ├── .editorconfig ├── .gitignore ├── .vscode │ └── settings.json ├── README.md ├── build.gradle.kts ├── composeApp │ ├── build.gradle.kts │ ├── proguard-rules.pro │ ├── schemas │ │ └── io.github.openflocon.flocondesktop.common.db.AppDatabase │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ └── 74.json │ └── src │ │ ├── commonMain │ │ ├── composeResources │ │ │ ├── drawable │ │ │ │ ├── app_icon.png │ │ │ │ ├── app_icon_small.png │ │ │ │ ├── arrow_up_cropped.png │ │ │ │ ├── compose-multiplatform.xml │ │ │ │ ├── graphql.png │ │ │ │ ├── grpc.png │ │ │ │ └── smartphone.png │ │ │ ├── files │ │ │ │ └── aboutlibraries.json │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocondesktop │ │ │ ├── AppWindow.kt │ │ │ ├── adb │ │ │ └── AdbRepositoryImpl.kt │ │ │ ├── app │ │ │ ├── AppAction.kt │ │ │ ├── AppScreen.kt │ │ │ ├── AppUiState.kt │ │ │ ├── AppViewModel.kt │ │ │ ├── ContentUiState.kt │ │ │ ├── InitialSetupStateHolder.kt │ │ │ ├── MenuScene.kt │ │ │ ├── di │ │ │ │ ├── AppModule.kt │ │ │ │ └── AppUiModule.kt │ │ │ ├── ui │ │ │ │ ├── delegates │ │ │ │ │ ├── DevicesDelegate.kt │ │ │ │ │ ├── Mapper.kt │ │ │ │ │ └── RecordVideoDelegate.kt │ │ │ │ ├── model │ │ │ │ │ ├── AppUiState.kt │ │ │ │ │ ├── DeviceAppUiModel.kt │ │ │ │ │ ├── DeviceItemUiModel.kt │ │ │ │ │ ├── DevicesStateUiModel.kt │ │ │ │ │ ├── RecordVideoStateUiModel.kt │ │ │ │ │ ├── SubScreen.kt │ │ │ │ │ └── leftpanel │ │ │ │ │ │ ├── MenuItem.kt │ │ │ │ │ │ ├── MenuSection.kt │ │ │ │ │ │ └── MenuUiState.kt │ │ │ │ ├── settings │ │ │ │ │ ├── AboutScreen.kt │ │ │ │ │ ├── DI.kt │ │ │ │ │ ├── Navigation.kt │ │ │ │ │ ├── SettingsAction.kt │ │ │ │ │ ├── SettingsScreen.kt │ │ │ │ │ ├── SettingsUiState.kt │ │ │ │ │ └── SettingsViewModel.kt │ │ │ │ └── view │ │ │ │ │ ├── SubScreenSelectorItem.kt │ │ │ │ │ ├── leftpannel │ │ │ │ │ ├── LeftPannelDivider.kt │ │ │ │ │ ├── LeftPannelView.kt │ │ │ │ │ ├── PannelLabel.kt │ │ │ │ │ └── PannelView.kt │ │ │ │ │ └── topbar │ │ │ │ │ ├── MainScreenTopBar.kt │ │ │ │ │ ├── TopBarDeviceAndAppView.kt │ │ │ │ │ ├── TopBarSelector.kt │ │ │ │ │ ├── actions │ │ │ │ │ ├── TopBarActions.kt │ │ │ │ │ └── TopBarButton.kt │ │ │ │ │ ├── app │ │ │ │ │ ├── TopBarAppDropdown.kt │ │ │ │ │ └── TopBarAppView.kt │ │ │ │ │ └── device │ │ │ │ │ ├── TopBarDeviceDropdown.kt │ │ │ │ │ └── TopBarDeviceView.kt │ │ │ └── version │ │ │ │ ├── VersionCheckerDialog.kt │ │ │ │ └── VersionCheckerViewModel.kt │ │ │ ├── common │ │ │ ├── AdbExecutor.kt │ │ │ ├── coroutines │ │ │ │ ├── closeable │ │ │ │ │ ├── CloseableDelegate.kt │ │ │ │ │ └── CloseableScoped.kt │ │ │ │ └── dispatcherprovider │ │ │ │ │ └── DispatcherProviderImpl.kt │ │ │ ├── db │ │ │ │ ├── AppDatabase.kt │ │ │ │ ├── RoomModule.kt │ │ │ │ └── converters │ │ │ │ │ ├── DashboardConverters.kt │ │ │ │ │ ├── ListStringsConverters.kt │ │ │ │ │ └── MapStringsConverters.kt │ │ │ ├── di │ │ │ │ └── CommmonModule.kt │ │ │ ├── ui │ │ │ │ ├── ContextualView.kt │ │ │ │ ├── IsInPreview.kt │ │ │ │ ├── JsonPrettyPrinter.kt │ │ │ │ ├── feedback │ │ │ │ │ ├── FeedbackDisplayerImpl.kt │ │ │ │ │ └── FeedbackDisplayerView.kt │ │ │ │ ├── interactions │ │ │ │ │ └── Interactions.kt │ │ │ │ └── window │ │ │ │ │ └── FloconWindow.kt │ │ │ └── utils │ │ │ │ ├── ClosableScopeExt.kt │ │ │ │ ├── Link.kt │ │ │ │ ├── OpenFile.kt │ │ │ │ └── ViewModelExt.kt │ │ │ ├── core │ │ │ ├── data │ │ │ │ ├── device │ │ │ │ │ └── DevicesRepositoryImpl.kt │ │ │ │ ├── di │ │ │ │ │ └── CoreDataModule.kt │ │ │ │ └── settings │ │ │ │ │ ├── DI.kt │ │ │ │ │ ├── SettingsRepositoryImpl.kt │ │ │ │ │ ├── datasource │ │ │ │ │ └── local │ │ │ │ │ │ ├── SettingsDataSource.kt │ │ │ │ │ │ └── SettingsDataSourcePrefs.kt │ │ │ │ │ ├── models │ │ │ │ │ └── NetworkSettingsLocal.kt │ │ │ │ │ └── usecase │ │ │ │ │ ├── ObserveNetworkSettingsUseCase.kt │ │ │ │ │ └── SaveNetworkSettingsUseCase.kt │ │ │ └── di │ │ │ │ └── CoreModule.kt │ │ │ ├── features │ │ │ ├── FeaturesModule.kt │ │ │ ├── analytics │ │ │ │ ├── AnalyticsDetailViewModel.kt │ │ │ │ ├── AnalyticsViewModel.kt │ │ │ │ ├── DI.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── delegate │ │ │ │ │ └── AnalyticsSelectorDelegate.kt │ │ │ │ ├── mapper │ │ │ │ │ └── Mapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── AnalyticsAction.kt │ │ │ │ │ ├── AnalyticsDetailUiModel.kt │ │ │ │ │ ├── AnalyticsRowUiModel.kt │ │ │ │ │ ├── AnalyticsScreenUiState.kt │ │ │ │ │ ├── AnalyticsStateUiModel.kt │ │ │ │ │ └── DeviceAnalyticsUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── AnalyticsDetailView.kt │ │ │ │ │ ├── AnalyticsFilterBar.kt │ │ │ │ │ ├── AnalyticsRowView.kt │ │ │ │ │ ├── AnalyticsScreen.kt │ │ │ │ │ └── AnalyticsSelectorView.kt │ │ │ ├── crashreporter │ │ │ │ ├── CrashReporterScreen.kt │ │ │ │ ├── CrashReporterViewModel.kt │ │ │ │ ├── DI.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── mapper │ │ │ │ │ └── Mapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── CrashReporterAction.kt │ │ │ │ │ ├── CrashReporterSelectedUiModel.kt │ │ │ │ │ └── CrashReporterUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── CrashReportDetailView.kt │ │ │ │ │ └── CrashReportItemView.kt │ │ │ ├── dashboard │ │ │ │ ├── DI.kt │ │ │ │ ├── DashboardViewModel.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── delegate │ │ │ │ │ └── DashboardSelectorDelegate.kt │ │ │ │ ├── mapper │ │ │ │ │ └── DashboardUiMapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── DashboardArrangement.kt │ │ │ │ │ ├── DashboardContainerViewState.kt │ │ │ │ │ ├── DashboardViewState.kt │ │ │ │ │ ├── DeviceDashboardUiModel.kt │ │ │ │ │ └── TablesStateUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── DashboardArrangementView.kt │ │ │ │ │ ├── DashboardContainerView.kt │ │ │ │ │ ├── DashboardScreen.kt │ │ │ │ │ ├── DashboardSelectorView.kt │ │ │ │ │ ├── DashboardView.kt │ │ │ │ │ └── items │ │ │ │ │ ├── DashboardButtonView.kt │ │ │ │ │ ├── DashboardCheckBoxView.kt │ │ │ │ │ ├── DashboardHtmlView.kt │ │ │ │ │ ├── DashboardLabelView.kt │ │ │ │ │ ├── DashboardMarkdownView.kt │ │ │ │ │ ├── DashboardPlainTextView.kt │ │ │ │ │ ├── DashboardTextFieldView.kt │ │ │ │ │ └── DashboardTextView.kt │ │ │ ├── database │ │ │ │ ├── DI.kt │ │ │ │ ├── DatabaseTabViewModel.kt │ │ │ │ ├── DatabaseViewModel.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── delegate │ │ │ │ │ └── DatabaseSelectorDelegate.kt │ │ │ │ ├── mapper │ │ │ │ │ └── UiMapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── DatabaseFavoriteQueryUiModel.kt │ │ │ │ │ ├── DatabaseScreenAction.kt │ │ │ │ │ ├── DatabaseScreenState.kt │ │ │ │ │ ├── DatabaseTabAction.kt │ │ │ │ │ ├── DatabaseTabState.kt │ │ │ │ │ ├── DatabaseTabViewAction.kt │ │ │ │ │ ├── DatabasesStateUiModel.kt │ │ │ │ │ ├── DeviceDataBaseUiModel.kt │ │ │ │ │ └── QueryResultUiModel.kt │ │ │ │ ├── processor │ │ │ │ │ ├── ExportDatabaseResultToCsvProcessor.kt │ │ │ │ │ └── ImportSqlQueryProcessor.kt │ │ │ │ └── view │ │ │ │ │ ├── DatabaseContentView.kt │ │ │ │ │ ├── DatabaseDetail.kt │ │ │ │ │ ├── DatabaseQueryToolbarView.kt │ │ │ │ │ ├── DatabaseQueryView.kt │ │ │ │ │ ├── DatabaseResultView.kt │ │ │ │ │ ├── DatabaseRowDetailView.kt │ │ │ │ │ ├── DatabaseScreen.kt │ │ │ │ │ ├── DatabaseTab.kt │ │ │ │ │ ├── DatabaseTabsView.kt │ │ │ │ │ ├── SaveFavoriteDialog.kt │ │ │ │ │ └── databases_tables │ │ │ │ │ ├── ColumnView.kt │ │ │ │ │ ├── DatabaseItemView.kt │ │ │ │ │ ├── DatabasesAndTablesView.kt │ │ │ │ │ ├── FavoriteQueryItemView.kt │ │ │ │ │ └── TableItemView.kt │ │ │ ├── deeplinks │ │ │ │ ├── DI.kt │ │ │ │ ├── DeepLinkViewModel.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── mapper │ │ │ │ │ └── Mapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── DeeplinkPart.kt │ │ │ │ │ └── DeeplinkViewState.kt │ │ │ │ └── view │ │ │ │ │ ├── DeeplinkFreeformView.kt │ │ │ │ │ ├── DeeplinkItemView.kt │ │ │ │ │ └── DeeplinkScreen.kt │ │ │ ├── files │ │ │ │ ├── DI.kt │ │ │ │ ├── FilesViewModel.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── mapper │ │ │ │ │ └── FileUiMapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── FileColumnUiModel.kt │ │ │ │ │ ├── FilePathUiModel.kt │ │ │ │ │ ├── FileTypeUiModel.kt │ │ │ │ │ ├── FileUiModel.kt │ │ │ │ │ ├── FilesHeaderStateUiModel.kt │ │ │ │ │ └── FilesStateUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── FileItemRow.kt │ │ │ │ │ ├── FilesScreen.kt │ │ │ │ │ ├── FilesTopBar.kt │ │ │ │ │ └── header │ │ │ │ │ ├── FilesListHeader.kt │ │ │ │ │ ├── FilesListHeaderButton.kt │ │ │ │ │ └── FilterIcon.kt │ │ │ ├── images │ │ │ │ ├── DI.kt │ │ │ │ ├── ImagesViewModel.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── mapper │ │ │ │ │ └── ImageUiMapper.kt │ │ │ │ ├── model │ │ │ │ │ ├── ImagesStateUiModel.kt │ │ │ │ │ └── ImagesUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── ImageItemView.kt │ │ │ │ │ └── ImagesScreen.kt │ │ │ ├── network │ │ │ │ ├── DI.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── badquality │ │ │ │ │ ├── BadQualityNetworkViewModel.kt │ │ │ │ │ ├── edition │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ └── BadQualityMapper.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── BadQualityConfigUiModel.kt │ │ │ │ │ │ │ ├── PossibleExceptionUiModel.kt │ │ │ │ │ │ │ └── SelectedBadQualityUiModel.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── BadQuaityErrorExceptionEditor.kt │ │ │ │ │ │ │ ├── BadQualityEditionWindow.kt │ │ │ │ │ │ │ ├── BadQualityErrorsListView.kt │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ └── NetworkExceptionSelector.kt │ │ │ │ │ │ │ └── http │ │ │ │ │ │ │ └── BadQualityHttpErrorEditor.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── BadQualityMapper.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── NetworkBadQualityLineUiModel.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── BadNetworkLineView.kt │ │ │ │ │ │ ├── BadNetworkQualityWindow.kt │ │ │ │ │ │ └── NetworkBadQualityContent.kt │ │ │ │ ├── body │ │ │ │ │ ├── NetworkJsonScreen.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── ContentUiState.kt │ │ │ │ │ │ └── NetworkBodyDetailUi.kt │ │ │ │ ├── detail │ │ │ │ │ ├── NetworkDetailAction.kt │ │ │ │ │ ├── NetworkDetailDelegate.kt │ │ │ │ │ ├── NetworkDetailViewModel.kt │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── NetworkDetailUiMapper.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── NetworkDetailHeaderUi.kt │ │ │ │ │ │ └── NetworkDetailViewState.kt │ │ │ │ │ └── view │ │ │ │ │ │ ├── NetworkDetailView.kt │ │ │ │ │ │ └── components │ │ │ │ │ │ └── DetailHeadersView.kt │ │ │ │ ├── list │ │ │ │ │ ├── NetworkViewModel.kt │ │ │ │ │ ├── delegate │ │ │ │ │ │ ├── HeaderDelegate.kt │ │ │ │ │ │ └── OpenBodyDelegate.kt │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── FilterMapper.kt │ │ │ │ │ │ ├── MethodUiMapper.kt │ │ │ │ │ │ ├── NetworkUiMapper.kt │ │ │ │ │ │ ├── SettingsUiMapper.kt │ │ │ │ │ │ ├── StatusUiMapper.kt │ │ │ │ │ │ └── TypeUiMapper.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── NetworkAction.kt │ │ │ │ │ │ ├── NetworkItemColumnWidths.kt │ │ │ │ │ │ ├── NetworkItemViewState.kt │ │ │ │ │ │ ├── NetworkMethodUi.kt │ │ │ │ │ │ ├── NetworkSettingsUiModel.kt │ │ │ │ │ │ ├── NetworkStatusUi.kt │ │ │ │ │ │ ├── NetworkUiState.kt │ │ │ │ │ │ ├── SortedByUiModel.kt │ │ │ │ │ │ ├── TopBarUiState.kt │ │ │ │ │ │ └── header │ │ │ │ │ │ │ ├── NetworkHeaderUiState.kt │ │ │ │ │ │ │ ├── OnFilterAction.kt │ │ │ │ │ │ │ ├── TextFilterAction.kt │ │ │ │ │ │ │ └── columns │ │ │ │ │ │ │ ├── NetworkColumnsTypeUiModel.kt │ │ │ │ │ │ │ └── base │ │ │ │ │ │ │ ├── NetworkColumnUiModel.kt │ │ │ │ │ │ │ ├── NetworkMethodColumnUiModel.kt │ │ │ │ │ │ │ ├── NetworkStatusColumnUiModel.kt │ │ │ │ │ │ │ ├── NetworkTextColumnUiModel.kt │ │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ ├── FilterState.kt │ │ │ │ │ │ │ ├── MethodFilterState.kt │ │ │ │ │ │ │ └── TextFilterStateUiModel.kt │ │ │ │ │ └── view │ │ │ │ │ │ ├── NetworkItemView.kt │ │ │ │ │ │ ├── NetworkScreen.kt │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── FilterBar.kt │ │ │ │ │ │ ├── Filters.kt │ │ │ │ │ │ ├── HeaderDropdown.kt │ │ │ │ │ │ ├── HeaderLabelItem.kt │ │ │ │ │ │ ├── MethodView.kt │ │ │ │ │ │ └── StatusView.kt │ │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── MethodFilterDropdown.kt │ │ │ │ │ │ └── TextFilterDropdown.kt │ │ │ │ │ │ └── header │ │ │ │ │ │ ├── NetworkHeaderButton.kt │ │ │ │ │ │ └── NetworkItemHeaderView.kt │ │ │ │ ├── mock │ │ │ │ │ ├── NetworkMocksViewModel.kt │ │ │ │ │ ├── edition │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ └── MocksMapper.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── EditableMockNetworkUiModel.kt │ │ │ │ │ │ │ ├── MockEditionWindowUiModel.kt │ │ │ │ │ │ │ ├── MockNetworkMethodUi.kt │ │ │ │ │ │ │ └── SelectedMockUiModel.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── MockNetworkLabelView.kt │ │ │ │ │ │ │ ├── MockNetworkMethodDropdown.kt │ │ │ │ │ │ │ ├── MockNetworkMethodView.kt │ │ │ │ │ │ │ └── NetworkEditionWindow.kt │ │ │ │ │ ├── list │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ └── MocksMapper.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ └── MockNetworkLineUiModel.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ │ ├── MockLineView.kt │ │ │ │ │ │ │ ├── MocksHeader.kt │ │ │ │ │ │ │ └── NetworkMocksScreen.kt │ │ │ │ │ └── processor │ │ │ │ │ │ ├── ExportMocksProcessor.kt │ │ │ │ │ │ ├── ImportMocksProcessor.kt │ │ │ │ │ │ └── MockNetworkExportedModel.kt │ │ │ │ ├── search │ │ │ │ │ ├── NetworkSearchViewModel.kt │ │ │ │ │ ├── model │ │ │ │ │ │ └── NetworkSearchUiState.kt │ │ │ │ │ └── view │ │ │ │ │ │ ├── NetworkSearchScreen.kt │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── NetworkSearchPreviewView.kt │ │ │ │ │ │ └── ScopeChipsView.kt │ │ │ │ └── websocket │ │ │ │ │ ├── NetworkWebsocketMockViewModel.kt │ │ │ │ │ └── NetworkWebsocketMockWindow.kt │ │ │ ├── sharedpreferences │ │ │ │ ├── DI.kt │ │ │ │ ├── Mapper.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── SharedPreferencesViewModel.kt │ │ │ │ ├── delegate │ │ │ │ │ └── SharedPrefSelectorDelegate.kt │ │ │ │ ├── model │ │ │ │ │ ├── DeviceSharedPrefUiModel.kt │ │ │ │ │ ├── SharedPreferenceToEdit.kt │ │ │ │ │ ├── SharedPreferencesRowUiModel.kt │ │ │ │ │ ├── SharedPreferencesRowsStateUiModel.kt │ │ │ │ │ └── SharedPrefsStateUiModel.kt │ │ │ │ └── view │ │ │ │ │ ├── SharedPreferenceAutoUpdate.kt │ │ │ │ │ ├── SharedPreferenceEditScreen.kt │ │ │ │ │ ├── SharedPreferenceRow.kt │ │ │ │ │ ├── SharedPreferenceSelectorView.kt │ │ │ │ │ ├── SharedPreferencesFilterBar.kt │ │ │ │ │ └── SharedPreferencesScreen.kt │ │ │ └── table │ │ │ │ ├── DI.kt │ │ │ │ ├── Navigation.kt │ │ │ │ ├── TableViewModel.kt │ │ │ │ ├── delegate │ │ │ │ └── TableSelectorDelegate.kt │ │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ │ ├── model │ │ │ │ ├── DeviceTableUiModel.kt │ │ │ │ ├── TableAction.kt │ │ │ │ ├── TableColumnsUiModel.kt │ │ │ │ ├── TableContentStateUiModel.kt │ │ │ │ ├── TableRowUiModel.kt │ │ │ │ └── TablesStateUiModel.kt │ │ │ │ └── view │ │ │ │ ├── TableFilterBar.kt │ │ │ │ ├── TableRowView.kt │ │ │ │ ├── TableScreen.kt │ │ │ │ └── TableSelectorView.kt │ │ │ └── messages │ │ │ ├── di │ │ │ └── MessagesModule.kt │ │ │ └── ui │ │ │ ├── MessagesServerDelegate.kt │ │ │ └── di │ │ │ └── MessagesUiModule.kt │ │ ├── commonTest │ │ └── kotlin │ │ │ └── com │ │ │ └── florent37 │ │ │ └── flocondesktop │ │ │ ├── ComposeAppCommonTest.kt │ │ │ └── DeeplinkParserTest.kt │ │ └── desktopMain │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocondesktop │ │ │ └── common │ │ │ └── ui │ │ │ └── window │ │ │ └── FloconWindow.desktop.kt │ │ ├── kotlin │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── flocondesktop │ │ │ ├── Main.kt │ │ │ ├── about │ │ │ ├── AboutScreen.kt │ │ │ ├── Contributor.kt │ │ │ └── ContributorView.kt │ │ │ ├── common │ │ │ ├── AdbExecutor.desktop.kt │ │ │ ├── db │ │ │ │ └── AppDatabase.desktop.kt │ │ │ ├── ui │ │ │ │ └── ContextualView.desktop.kt │ │ │ └── utils │ │ │ │ └── Link.desktop.kt │ │ │ ├── core │ │ │ └── data │ │ │ │ └── settings │ │ │ │ └── datasource │ │ │ │ └── local │ │ │ │ └── CoreRepository.desktop.kt │ │ │ └── window │ │ │ ├── WindowConst.kt │ │ │ ├── WindowExt.kt │ │ │ ├── WindowStateData.kt │ │ │ └── WindowStateSaver.kt │ │ └── resources │ │ └── files │ │ ├── flocon_big.icns │ │ └── flocon_big.ico ├── data │ ├── core │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── data │ │ │ └── core │ │ │ ├── DI.kt │ │ │ ├── adb │ │ │ └── datasource │ │ │ │ └── local │ │ │ │ └── AdbLocalDataSource.kt │ │ │ ├── analytics │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── AnalyticsLocalDataSource.kt │ │ │ │ ├── AnalyticsRemoteDataSource.kt │ │ │ │ └── DeviceAnalyticsDataSource.kt │ │ │ └── repository │ │ │ │ └── AnalyticsRepositoryImpl.kt │ │ │ ├── crashreporter │ │ │ ├── DI.kt │ │ │ ├── datasources │ │ │ │ ├── CrashReportRemoteDataSource.kt │ │ │ │ └── CrashReporterLocalDataSource.kt │ │ │ └── repository │ │ │ │ └── CrashReporterRepositoryImpl.kt │ │ │ ├── dashboard │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DashboardLocalDataSource.kt │ │ │ │ ├── DeviceDashboardsDataSource.kt │ │ │ │ └── ToDeviceDashboardDataSource.kt │ │ │ └── repository │ │ │ │ └── DashboardRepositoryImpl.kt │ │ │ ├── database │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DeviceDatabasesRemoteDataSource.kt │ │ │ │ ├── LocalDatabaseDataSource.kt │ │ │ │ └── QueryDatabaseRemoteDataSource.kt │ │ │ └── repository │ │ │ │ └── DatabaseRepositoryImpl.kt │ │ │ ├── deeplink │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DeeplinkLocalDataSource.kt │ │ │ │ └── DeeplinkRemoteDataSource.kt │ │ │ └── repository │ │ │ │ └── DeeplinkRepositoryImpl.kt │ │ │ ├── device │ │ │ └── datasource │ │ │ │ ├── local │ │ │ │ ├── LocalCurrentDeviceDataSource.kt │ │ │ │ ├── LocalDevicesDataSource.kt │ │ │ │ └── model │ │ │ │ │ └── InsertResult.kt │ │ │ │ └── remote │ │ │ │ └── RemoteDeviceDataSource.kt │ │ │ ├── files │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── FilesLocalDataSource.kt │ │ │ │ └── FilesRemoteDataSource.kt │ │ │ └── repository │ │ │ │ └── FilesRepositoryImpl.kt │ │ │ ├── images │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── ImagesLocalDataSource.kt │ │ │ └── repository │ │ │ │ └── ImagesRepositoryImpl.kt │ │ │ ├── messages │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── MessageRemoteDataSource.kt │ │ │ └── repository │ │ │ │ └── MessagesRepositoryImpl.kt │ │ │ ├── network │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── NetworkCsvDatasource.kt │ │ │ │ ├── NetworkFilterLocalDataSource.kt │ │ │ │ ├── NetworkLocalDataSource.kt │ │ │ │ ├── NetworkLocalWebsocketDataSource.kt │ │ │ │ ├── NetworkMocksLocalDataSource.kt │ │ │ │ ├── NetworkQualityLocalDataSource.kt │ │ │ │ ├── NetworkRemoteDataSource.kt │ │ │ │ └── NetworkReplayDataSource.kt │ │ │ ├── graphql │ │ │ │ └── model │ │ │ │ │ ├── GraphQlExtracted.kt │ │ │ │ │ ├── GraphQlRequestBody.kt │ │ │ │ │ ├── GraphQlResponseBody.kt │ │ │ │ │ └── GraphQlResponseError.kt │ │ │ └── repository │ │ │ │ ├── NetworkCsvRepositoryImpl.kt │ │ │ │ ├── NetworkFilterRepositoryImpl.kt │ │ │ │ └── NetworkRepositoryImpl.kt │ │ │ ├── sharedpreference │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DeviceSharedPreferencesLocalDataSource.kt │ │ │ │ ├── DeviceSharedPreferencesRemoteDataSource.kt │ │ │ │ └── DeviceSharedPreferencesValuesDataSource.kt │ │ │ └── repository │ │ │ │ └── SharedPreferencesRepositoryImpl.kt │ │ │ ├── table │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DeviceTablesDataSource.kt │ │ │ │ ├── TableLocalDataSource.kt │ │ │ │ └── TableRemoteDataSource.kt │ │ │ └── repository │ │ │ │ └── TableRepositoryImpl.kt │ │ │ └── versions │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ └── VersionCheckerDatasource.kt │ │ │ └── repository │ │ │ └── VersionCheckerRepositoryImpl.kt │ ├── local │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── data │ │ │ └── local │ │ │ ├── DI.kt │ │ │ ├── adb │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── AdbDevicesDao.kt │ │ │ ├── datasource │ │ │ │ └── LocalAdbDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── AdbLocalMapper.kt │ │ │ └── model │ │ │ │ └── DeviceWithSerialEntity.kt │ │ │ ├── analytics │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── FloconAnalyticsDao.kt │ │ │ ├── datasource │ │ │ │ ├── AnalyticsLocalDataSourceRoom.kt │ │ │ │ └── DeviceAnalyticsDataSourceInMemory.kt │ │ │ ├── mapper │ │ │ │ ├── MapperEntityToDomain.kt │ │ │ │ └── MapperToEntity.kt │ │ │ └── models │ │ │ │ └── AnalyticsItemEntity.kt │ │ │ ├── crashreporter │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── CrashReportDao.kt │ │ │ ├── datasource │ │ │ │ └── CrashReporterLocalDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── MapperToEntity.kt │ │ │ └── models │ │ │ │ └── CrashReportEntity.kt │ │ │ ├── dashboard │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── FloconDashboardDao.kt │ │ │ ├── datasource │ │ │ │ ├── DashboardLocalDataSourceRoom.kt │ │ │ │ └── DeviceDashboardsDataSourceInMemory.kt │ │ │ ├── mapper │ │ │ │ ├── EntityMapper.kt │ │ │ │ └── ToDomainMapper.kt │ │ │ └── models │ │ │ │ ├── ContainerConfigEntity.kt │ │ │ │ ├── ContainerWithElements.kt │ │ │ │ ├── DashboardContainerEntity.kt │ │ │ │ ├── DashboardElementEntity.kt │ │ │ │ ├── DashboardEntity.kt │ │ │ │ └── DashboardWithContainersAndElements.kt │ │ │ ├── database │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ ├── QueryDao.kt │ │ │ │ └── TablesDao.kt │ │ │ ├── datasource │ │ │ │ └── LocalDatabaseDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ └── models │ │ │ │ ├── DabataseTableEntityColumn.kt │ │ │ │ ├── DatabaseTableEntity.kt │ │ │ │ ├── FavoriteQueryEntity.kt │ │ │ │ └── SuccessQueryEntity.kt │ │ │ ├── deeplink │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── FloconDeeplinkDao.kt │ │ │ ├── datasource │ │ │ │ └── LocalDeeplinkDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ └── models │ │ │ │ └── DeeplinkEntity.kt │ │ │ ├── device │ │ │ ├── DI.kt │ │ │ └── datasource │ │ │ │ ├── dao │ │ │ │ └── DevicesDao.kt │ │ │ │ ├── local │ │ │ │ ├── LocalCurrentDeviceDataSourceInMemory.kt │ │ │ │ └── LocalDevicesDataSourceRoom.kt │ │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ │ └── model │ │ │ │ ├── DeviceAppEntity.kt │ │ │ │ └── DeviceEntity.kt │ │ │ ├── files │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── FloconFileDao.kt │ │ │ ├── datasource │ │ │ │ └── LocalFilesDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ └── models │ │ │ │ ├── FileEntity.kt │ │ │ │ └── FileOptionsEntity.kt │ │ │ ├── images │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ └── FloconImageDao.kt │ │ │ ├── datasource │ │ │ │ └── ImagesLocalDataSourceRoom.kt │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ └── models │ │ │ │ └── DeviceImageEntity.kt │ │ │ ├── network │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ │ ├── FloconNetworkDao.kt │ │ │ │ ├── NetworkBadQualityConfigDao.kt │ │ │ │ ├── NetworkFilterDao.kt │ │ │ │ ├── NetworkMocksDao.kt │ │ │ │ └── NetworkSettingsDao.kt │ │ │ ├── datasource │ │ │ │ ├── BadQualityConfigLocalDataSourceImpl.kt │ │ │ │ ├── NetworkCsvDatasourceImpl.kt │ │ │ │ ├── NetworkFilterLocalDataSourceRoom.kt │ │ │ │ ├── NetworkLocalDataSourceRoom.kt │ │ │ │ ├── NetworkLocalWebsocketDataSourceRam.kt │ │ │ │ └── NetworkMocksLocalDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ ├── BadQualityMapper.kt │ │ │ │ ├── FilterMapper.kt │ │ │ │ ├── MapperToDomain.kt │ │ │ │ ├── MapperToEntity.kt │ │ │ │ └── MockMapper.kt │ │ │ ├── models │ │ │ │ ├── FilterItemSavedEntity.kt │ │ │ │ ├── FloconNetworkCallEntity.kt │ │ │ │ ├── NetworkFilterEntity.kt │ │ │ │ ├── NetworkSettingsEntity.kt │ │ │ │ ├── badquality │ │ │ │ │ ├── BadQualityConfigEntity.kt │ │ │ │ │ └── ErrorEmbedded.kt │ │ │ │ ├── graphql │ │ │ │ │ ├── NetworkCallGraphQlRequestEmbedded.kt │ │ │ │ │ └── NetworkCallGraphQlResponseEmbedded.kt │ │ │ │ ├── grpc │ │ │ │ │ └── NetworkCallGrpcResponseEmbedded.kt │ │ │ │ ├── http │ │ │ │ │ └── NetworkCallHttpResponseEmbedded.kt │ │ │ │ └── mock │ │ │ │ │ ├── MockNetworkEntity.kt │ │ │ │ │ └── MockNetworkResponseEmbedded.kt │ │ │ └── utils │ │ │ │ ├── ExportCsv.kt │ │ │ │ └── ImportFromCsv.kt │ │ │ ├── sharedpreference │ │ │ ├── DI.kt │ │ │ └── datasources │ │ │ │ ├── DeviceSharedPreferencesLocalDataSourceImpl.kt │ │ │ │ └── DeviceSharedPreferencesValuesDataSourceImpl.kt │ │ │ └── table │ │ │ ├── DI.kt │ │ │ ├── dao │ │ │ └── FloconTableDao.kt │ │ │ ├── datasource │ │ │ ├── DeviceTablesDataSourceInMemory.kt │ │ │ └── TableLocalDataSourceRoom.kt │ │ │ ├── mapper │ │ │ └── MapperToEntity.kt │ │ │ └── models │ │ │ ├── TableEntity.kt │ │ │ └── TableItemEntity.kt │ └── remote │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── com │ │ │ └── flocon │ │ │ └── data │ │ │ └── remote │ │ │ ├── DI.kt │ │ │ ├── analytics │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── AnalyticsRemoteDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── DataMapper.kt │ │ │ └── model │ │ │ │ ├── AnalyticsItemDataModel.kt │ │ │ │ └── AnalyticsPropertyDataModel.kt │ │ │ ├── common │ │ │ └── JsonExt.kt │ │ │ ├── crashreporter │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── CrashReportRemoteDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── DataMapper.kt │ │ │ └── model │ │ │ │ └── CrashReportDataModel.kt │ │ │ ├── dashboard │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── ToDeviceDashboardDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── DataMapper.kt │ │ │ └── models │ │ │ │ ├── DashboardConfigDataModel.kt │ │ │ │ ├── ToDeviceCheckBoxValueChangedMessage.kt │ │ │ │ ├── ToDeviceSubmittedFormMessage.kt │ │ │ │ └── ToDeviceSubmittedTextFieldMessage.kt │ │ │ ├── database │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── DeviceDatabasesRemoteDataSourceImpl.kt │ │ │ │ └── QueryDatabaseRemoteDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── Mapper.kt │ │ │ └── models │ │ │ │ ├── DatabaseExecuteSqlResponseDataModel.kt │ │ │ │ ├── DatabaseOutgoingGetDatabasesMessage.kt │ │ │ │ ├── DatabaseOutgoingQueryMessage.kt │ │ │ │ ├── DeviceDataBaseDataModel.kt │ │ │ │ ├── QueryResultReceivedDataModel.kt │ │ │ │ └── ResponseAndRequestIdDataModel.kt │ │ │ ├── deeplink │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── DeeplinkRemoteDataSourceImpl.kt │ │ │ └── models │ │ │ │ ├── DeeplinkReceivedDataModel.kt │ │ │ │ └── DeeplinksReceivedDataModel.kt │ │ │ ├── device │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── DeviceRemoteDataSourceImpl.kt │ │ │ └── model │ │ │ │ └── RegisterDeviceDataModel.kt │ │ │ ├── files │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── FilesRemoteDataSourceImpl.kt │ │ │ └── models │ │ │ │ ├── FromDeviceFilesDataModel.kt │ │ │ │ ├── FromDeviceFilesResultDataModel.kt │ │ │ │ ├── ToDeviceDeleteFileMessage.kt │ │ │ │ ├── ToDeviceDeleteFolderContentMessage.kt │ │ │ │ ├── ToDeviceGetFileMessage.kt │ │ │ │ └── ToDeviceGetFilesMessage.kt │ │ │ ├── messages │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── MessageRemoteDataSourceImpl.kt │ │ │ └── mapper │ │ │ │ └── FloconIncomingMapper.kt │ │ │ ├── models │ │ │ ├── FloconDeviceIdAndPackageNameDataModel.kt │ │ │ ├── FloconIncomingMessageDataModel.kt │ │ │ └── FloconOutgoingMessageDataModel.kt │ │ │ ├── network │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ ├── NetworkRemoteDataSourceImpl.kt │ │ │ │ └── NetworkReplayDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ ├── Mapper.kt │ │ │ │ ├── NetworkDomainExtractor.kt │ │ │ │ ├── NetworkMethodExtractor.kt │ │ │ │ ├── NetworkQueryExtractor.kt │ │ │ │ └── NetworkStatusExtractor.kt │ │ │ └── models │ │ │ │ ├── BadQualityConfigDataModel.kt │ │ │ │ ├── FloconNetworkRequestDataModel.kt │ │ │ │ ├── FloconNetworkWebSocketEvent.kt │ │ │ │ ├── MockNetworkResponseDataModel.kt │ │ │ │ └── WebsocketMockRemoteModel.kt │ │ │ ├── server │ │ │ └── Server.kt │ │ │ ├── sharedpreference │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── DeviceSharedPreferencesRemoteDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── SharedPreferenceValuesResponse.kt │ │ │ └── models │ │ │ │ ├── DeviceSharedPreferenceDataModel.kt │ │ │ │ ├── ToDeviceEditSharedPreferenceValueMessage.kt │ │ │ │ └── ToDeviceGetSharedPreferenceValueMessage.kt │ │ │ ├── table │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ │ └── TableRemoteDataSourceImpl.kt │ │ │ ├── mapper │ │ │ │ └── DataMapper.kt │ │ │ └── model │ │ │ │ ├── TableColumnDataModel.kt │ │ │ │ └── TableItemDataModel.kt │ │ │ └── version │ │ │ ├── DI.kt │ │ │ ├── datasource │ │ │ └── VersionCheckerDatasourceImpl.kt │ │ │ └── model │ │ │ └── GithubReleaseRemote.kt │ │ ├── commonTest │ │ └── kotlin │ │ │ └── com │ │ │ └── flocon │ │ │ └── data │ │ │ └── remote │ │ │ └── network │ │ │ └── mapper │ │ │ └── MapperTest.kt │ │ └── desktopMain │ │ └── kotlin │ │ └── com │ │ └── flocon │ │ └── data │ │ └── remote │ │ └── server │ │ ├── Server.desktop.kt │ │ └── ServerJvm.kt ├── domain │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── domain │ │ ├── Constant.kt │ │ ├── DI.kt │ │ ├── Protocol.kt │ │ ├── adb │ │ ├── AdbCommandTargetDomainModel.kt │ │ ├── DI.kt │ │ ├── ExecuteAdbCommandUseCase.kt │ │ ├── model │ │ │ ├── AdbCommandTargetDomainModel.kt │ │ │ └── DeviceWithSerialDomainModel.kt │ │ └── repository │ │ │ └── AdbRepository.kt │ │ ├── analytics │ │ ├── DI.kt │ │ ├── models │ │ │ ├── AnalyticsIdentifierDomainModel.kt │ │ │ ├── AnalyticsItemDomainModel.kt │ │ │ ├── AnalyticsPropertyDomainModel.kt │ │ │ └── AnalyticsTableId.kt │ │ ├── repository │ │ │ └── AnalyticsRepository.kt │ │ └── usecase │ │ │ ├── ExportAnalyticsToCsvUseCase.kt │ │ │ ├── GetCurrentDeviceAnalyticsContentUseCase.kt │ │ │ ├── GetCurrentDeviceSelectedAnalyticsUseCase.kt │ │ │ ├── ObserveAnalyticsByIdUseCase.kt │ │ │ ├── ObserveCurrentDeviceAnalyticsContentUseCase.kt │ │ │ ├── ObserveCurrentDeviceSelectedAnalyticsUseCase.kt │ │ │ ├── ObserveDeviceAnalyticsUseCase.kt │ │ │ ├── RemoveAnalyticsItemUseCase.kt │ │ │ ├── RemoveAnalyticsItemsBeforeUseCase.kt │ │ │ ├── RemoveOldSessionsAnalyticsUseCase.kt │ │ │ ├── ResetCurrentDeviceSelectedAnalyticsUseCase.kt │ │ │ └── SelectCurrentDeviceAnalyticsUseCase.kt │ │ ├── common │ │ ├── ByteFormatter.kt │ │ ├── Combines.kt │ │ ├── DispatcherProvider.kt │ │ ├── Either.kt │ │ ├── Tuple.kt │ │ └── time │ │ │ └── TimeFormatter.kt │ │ ├── crashreporter │ │ ├── DI.kt │ │ ├── models │ │ │ └── CrashReportDomainModel.kt │ │ ├── repository │ │ │ └── CrashReporterRepository.kt │ │ └── usecase │ │ │ ├── ClearAllCrashReportUseCase.kt │ │ │ ├── DeleteCrashReportUseCase.kt │ │ │ ├── ObserveCrashReportsByIdUseCase.kt │ │ │ └── ObserveCrashReportsUseCase.kt │ │ ├── dashboard │ │ ├── DI.kt │ │ ├── models │ │ │ ├── DashboardArrangementDomainModel.kt │ │ │ ├── DashboardContainerDomainModel.kt │ │ │ ├── DashboardDomainModel.kt │ │ │ ├── DashboardElementDomainModel.kt │ │ │ └── DashboardId.kt │ │ ├── repository │ │ │ └── DashboardRepository.kt │ │ └── usecase │ │ │ ├── DeleteCurrentDeviceSelectedDashboardUseCase.kt │ │ │ ├── DeleteDashboardUseCase.kt │ │ │ ├── GetCurrentDeviceSelectedDashboardUseCase.kt │ │ │ ├── ObserveCurrentDeviceDashboardUseCase.kt │ │ │ ├── ObserveCurrentDeviceSelectedDashboardUseCase.kt │ │ │ ├── ObserveDashboardArrangementUseCase.kt │ │ │ ├── ObserveDeviceDashboardsUseCase.kt │ │ │ ├── SelectCurrentDeviceDashboardUseCase.kt │ │ │ ├── SelectDashboardArrangementUseCase.kt │ │ │ ├── SendCheckBoxUpdateDeviceDeviceUseCase.kt │ │ │ ├── SendClickEventToDeviceDeviceUseCase.kt │ │ │ ├── SubmitFormToDeviceDeviceUseCase.kt │ │ │ └── SubmitTextFieldToDeviceDeviceUseCase.kt │ │ ├── database │ │ ├── DI.kt │ │ ├── models │ │ │ ├── DatabaseAndTablesDomainModel.kt │ │ │ ├── DatabaseExecuteSqlResponseDomainModel.kt │ │ │ ├── DatabaseFavoriteQueryDomainModel.kt │ │ │ ├── DatabaseTableDomainModel.kt │ │ │ ├── DeviceDataBaseDomainModel.kt │ │ │ └── ResponseAndRequestIdDomainModel.kt │ │ ├── repository │ │ │ └── DatabaseRepository.kt │ │ └── usecase │ │ │ ├── AskForDeviceDatabasesUseCase.kt │ │ │ ├── ExecuteDatabaseQueryUseCase.kt │ │ │ ├── GetDatabaseByIdUseCase.kt │ │ │ ├── GetDeviceDatabaseTablesUseCase.kt │ │ │ ├── GetTableColumnsUseCase.kt │ │ │ ├── ObserveCurrentDeviceSelectedDatabaseAndTablesUseCase.kt │ │ │ ├── ObserveDeviceDatabaseUseCase.kt │ │ │ ├── ObserveLastSuccessQueriesUseCase.kt │ │ │ └── favorite │ │ │ ├── DeleteFavoriteQueryDatabaseUseCase.kt │ │ │ ├── GetFavoriteQueryByIdDatabaseUseCase.kt │ │ │ ├── ObserveFavoriteQueriesUseCase.kt │ │ │ └── SaveQueryAsFavoriteDatabaseUseCase.kt │ │ ├── deeplink │ │ ├── DI.kt │ │ ├── models │ │ │ └── DeeplinkDomainModel.kt │ │ ├── repository │ │ │ └── DeeplinkRepository.kt │ │ └── usecase │ │ │ ├── AddToDeeplinkHistoryUseCase.kt │ │ │ ├── ExecuteDeeplinkUseCase.kt │ │ │ ├── ObserveCurrentDeviceDeeplinkHistoryUseCase.kt │ │ │ ├── ObserveCurrentDeviceDeeplinkUseCase.kt │ │ │ └── RemoveFromDeeplinkHistoryUseCase.kt │ │ ├── device │ │ ├── DI.kt │ │ ├── models │ │ │ ├── AppInstance.kt │ │ │ ├── AppPackageName.kt │ │ │ ├── DeviceAppDomainModel.kt │ │ │ ├── DeviceCapabilitiesDomainModel.kt │ │ │ ├── DeviceDomainModel.kt │ │ │ ├── DeviceId.kt │ │ │ ├── DeviceIdAndPackageNameDomainModel.kt │ │ │ ├── DeviceWithAppDomainModel.kt │ │ │ ├── DeviceWithAppsDomainModel.kt │ │ │ ├── HandleDeviceResultDomainModel.kt │ │ │ ├── RecordingDomainModel.kt │ │ │ └── RegisterDeviceWithAppDomainModel.kt │ │ ├── repository │ │ │ └── DevicesRepository.kt │ │ └── usecase │ │ │ ├── DeleteDeviceApplicationUseCase.kt │ │ │ ├── DeleteDeviceUseCase.kt │ │ │ ├── GetCurrentDeviceIdAndPackageNameUseCase.kt │ │ │ ├── GetCurrentDeviceIdUseCase.kt │ │ │ ├── HandleDeviceAndAppUseCase.kt │ │ │ ├── HandleNewAppUseCase.kt │ │ │ ├── HandleNewDeviceUseCase.kt │ │ │ ├── ObserveActiveDevicesUseCase.kt │ │ │ ├── ObserveCurrentDeviceAppsUseCase.kt │ │ │ ├── ObserveCurrentDeviceCapabilitiesUseCase.kt │ │ │ ├── ObserveCurrentDeviceFloconSdkVersionNameUseCase.kt │ │ │ ├── ObserveCurrentDeviceIdAndPackageNameUseCase.kt │ │ │ ├── ObserveCurrentDeviceIdUseCase.kt │ │ │ ├── ObserveDevicesUseCase.kt │ │ │ ├── ObserveIsCurrentDeviceIAndAppIsActiveUseCase.kt │ │ │ ├── ObserveIsCurrentIsActiveUseCase.kt │ │ │ ├── RestartAppUseCase.kt │ │ │ ├── SelectDeviceAppUseCase.kt │ │ │ ├── SelectDeviceUseCase.kt │ │ │ ├── StartRecordingVideoUseCase.kt │ │ │ ├── StopRecordingVideoUseCase.kt │ │ │ └── TakeScreenshotUseCase.kt │ │ ├── feedback │ │ ├── FeedbackDisplayer.kt │ │ └── FeedbackDisplayerHandler.kt │ │ ├── files │ │ ├── DI.kt │ │ ├── models │ │ │ ├── FileDomainModel.kt │ │ │ ├── FilePathDomainModel.kt │ │ │ ├── FromDeviceFilesDomainModel.kt │ │ │ └── FromDeviceFilesResultDomainModel.kt │ │ ├── repository │ │ │ └── FilesRepository.kt │ │ └── usecase │ │ │ ├── DeleteFileUseCase.kt │ │ │ ├── DeleteFolderContentUseCase.kt │ │ │ ├── DownloadFileUseCase.kt │ │ │ ├── ObserveFolderContentUseCase.kt │ │ │ ├── ObserveWithFoldersSizeUseCase.kt │ │ │ ├── RefreshFolderContentUseCase.kt │ │ │ └── UpdateWithFoldersSizeUseCase.kt │ │ ├── images │ │ ├── DI.kt │ │ ├── models │ │ │ └── DeviceImageDomainModel.kt │ │ ├── repository │ │ │ └── ImagesRepository.kt │ │ └── usecase │ │ │ ├── ObserveImagesUseCase.kt │ │ │ └── ResetCurrentDeviceImagesUseCase.kt │ │ ├── messages │ │ ├── DI.kt │ │ ├── models │ │ │ ├── FloconIncomingMessageDomainModel.kt │ │ │ └── FloconReceivedFileDomainModel.kt │ │ ├── repository │ │ │ ├── FileReceiverRepository.kt │ │ │ ├── MessagesReceiverRepository.kt │ │ │ └── MessagesRepository.kt │ │ └── usecase │ │ │ ├── HandleIncomingMessagesUseCase.kt │ │ │ ├── HandleReceivedFilesUseCase.kt │ │ │ └── StartServerUseCase.kt │ │ ├── models │ │ ├── TextFilterStateDomainModel.kt │ │ └── settings │ │ │ └── NetworkSettings.kt │ │ ├── network │ │ ├── DI.kt │ │ ├── models │ │ │ ├── BadQualityConfigDomainModel.kt │ │ │ ├── FloconNetworkCallDomainModel.kt │ │ │ ├── MockDeviceTarget.kt │ │ │ ├── MockNetworkDomainModel.kt │ │ │ ├── NetworkFilterDomainModel.kt │ │ │ ├── NetworkSortDomainModel.kt │ │ │ ├── NetworkTextFilterColumns.kt │ │ │ ├── NetworkWebsocketId.kt │ │ │ └── SearchScope.kt │ │ ├── repository │ │ │ ├── NetworkBadQualityRepository.kt │ │ │ ├── NetworkCsvRepository.kt │ │ │ ├── NetworkFilterRepository.kt │ │ │ ├── NetworkImageRepository.kt │ │ │ ├── NetworkMocksRepository.kt │ │ │ └── NetworkRepository.kt │ │ └── usecase │ │ │ ├── DecodeJwtTokenUseCase.kt │ │ │ ├── ExportNetworkCallsToCsvUseCase.kt │ │ │ ├── GenerateCurlCommandUseCase.kt │ │ │ ├── GetNetworkFilterUseCase.kt │ │ │ ├── GetNetworkRequestsUseCase.kt │ │ │ ├── ImportNetworkCallsFromCsvUseCase.kt │ │ │ ├── ObserveNetworkFilterUseCase.kt │ │ │ ├── ObserveNetworkRequestsByIdUseCase.kt │ │ │ ├── ObserveNetworkRequestsUseCase.kt │ │ │ ├── RemoveHttpRequestsBeforeUseCase.kt │ │ │ ├── RemoveNetworkRequestUseCase.kt │ │ │ ├── RemoveOldSessionsNetworkRequestUseCase.kt │ │ │ ├── ReplayNetworkCallUseCase.kt │ │ │ ├── ResetCurrentDeviceHttpRequestsUseCase.kt │ │ │ ├── UpdateNetworkFilterUseCase.kt │ │ │ ├── badquality │ │ │ ├── DeleteBadQualityUseCase.kt │ │ │ ├── ObserveAllNetworkBadQualitiesUseCase.kt │ │ │ ├── ObserveNetworkBadQualityUseCase.kt │ │ │ ├── SaveNetworkBadQualityUseCase.kt │ │ │ ├── SetNetworkBadQualityEnabledConfigUseCase.kt │ │ │ └── SetupNetworkBadQualityUseCase.kt │ │ │ ├── mocks │ │ │ ├── AddNetworkMocksUseCase.kt │ │ │ ├── DeleteNetworkMocksUseCase.kt │ │ │ ├── GenerateNetworkMockFromNetworkCallUseCase.kt │ │ │ ├── GetNetworkMockByIdUseCase.kt │ │ │ ├── ObserveNetworkMocksUseCase.kt │ │ │ ├── ObserveNetworkWebsocketIdsUseCase.kt │ │ │ ├── SendNetworkWebsocketMockUseCase.kt │ │ │ ├── SetupNetworkMocksUseCase.kt │ │ │ ├── UpdateNetworkMockIsEnabledUseCase.kt │ │ │ └── UpdateNetworkMocksDeviceUseCase.kt │ │ │ └── search │ │ │ ├── GetAllNetworkRequestsUseCase.kt │ │ │ └── SearchNetworkCallsUseCase.kt │ │ ├── settings │ │ ├── DI.kt │ │ ├── repository │ │ │ └── SettingsRepository.kt │ │ └── usecase │ │ │ ├── InitAdbPathUseCase.kt │ │ │ ├── ObserveFontSizeMultiplierUseCase.kt │ │ │ ├── SetFontSizeMultiplierUseCase.kt │ │ │ ├── StartAdbForwardUseCase.kt │ │ │ └── TestAdbUseCase.kt │ │ ├── sharedpreference │ │ ├── DI.kt │ │ ├── models │ │ │ ├── DeviceSharedPreferenceDomainModel.kt │ │ │ ├── SharedPreferenceRowDomainModel.kt │ │ │ └── SharedPreferenceValuesResponseDomainModel.kt │ │ ├── repository │ │ │ └── SharedPreferencesRepository.kt │ │ └── usecase │ │ │ ├── AskForDeviceSharedPreferencesUseCase.kt │ │ │ ├── EditSharedPrefFieldUseCase.kt │ │ │ ├── GetCurrentDeviceSelectedSharedPreferenceUseCase.kt │ │ │ ├── GetCurrentDeviceSharedPreferenceValuesUseCase.kt │ │ │ ├── ObserveCurrentDeviceSelectedSharedPreferenceUseCase.kt │ │ │ ├── ObserveCurrentDeviceSharedPreferenceValuesUseCase.kt │ │ │ ├── ObserveDeviceSharedPreferencesUseCase.kt │ │ │ └── SelectCurrentDeviceSharedPreferenceUseCase.kt │ │ ├── table │ │ ├── DI.kt │ │ ├── models │ │ │ ├── TableDomainModel.kt │ │ │ ├── TableId.kt │ │ │ └── TableIdentifierDomainModel.kt │ │ ├── repository │ │ │ └── TableRepository.kt │ │ └── usecase │ │ │ ├── ExportTableToCsvUseCase.kt │ │ │ ├── GetCurrentDeviceSelectedTableUseCase.kt │ │ │ ├── ObserveCurrentDeviceSelectedTableUseCase.kt │ │ │ ├── ObserveCurrentDeviceTableContentUseCase.kt │ │ │ ├── ObserveDeviceTablesUseCase.kt │ │ │ ├── RemoveTableItemUseCase.kt │ │ │ ├── RemoveTableItemsBeforeUseCase.kt │ │ │ ├── ResetCurrentDeviceSelectedTableUseCase.kt │ │ │ └── SelectCurrentDeviceTableUseCase.kt │ │ └── versions │ │ ├── DI.kt │ │ ├── model │ │ └── IsLastVersionDomainModel.kt │ │ ├── repository │ │ └── VersionsCheckerRepository.kt │ │ └── usecase │ │ ├── CheckIsDesktopOnLastVersionUseCase.kt │ │ ├── ObserveIsClientOnLastVersionUseCase.kt │ │ └── ObserveLastAvailableFloconVersionUseCase.kt ├── generateAboutLibraries.sh ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library │ └── designsystem │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── library │ │ │ └── designsystem │ │ │ ├── FloconTheme.kt │ │ │ ├── common │ │ │ ├── ClipboardManager.kt │ │ │ ├── FloconContextMenuItem.kt │ │ │ ├── StateExt.kt │ │ │ └── UrlExt.kt │ │ │ ├── components │ │ │ ├── FilterFieldView.kt │ │ │ ├── FloconAnimateVisibility.kt │ │ │ ├── FloconButton.kt │ │ │ ├── FloconCheckbox.kt │ │ │ ├── FloconCircularProgressIndicator.kt │ │ │ ├── FloconCodeBlock.kt │ │ │ ├── FloconDialog.kt │ │ │ ├── FloconDivider.kt │ │ │ ├── FloconDropdown.kt │ │ │ ├── FloconExposedDropdown.kt │ │ │ ├── FloconFeature.kt │ │ │ ├── FloconIcon.kt │ │ │ ├── FloconIconButton.kt │ │ │ ├── FloconJsonTree.kt │ │ │ ├── FloconLineDescription.kt │ │ │ ├── FloconLinearProgressIndictor.kt │ │ │ ├── FloconMenu.kt │ │ │ ├── FloconMenuItem.kt │ │ │ ├── FloconMenuRepresentation.kt │ │ │ ├── FloconOverflow.kt │ │ │ ├── FloconPageTopBar.kt │ │ │ ├── FloconPopup.kt │ │ │ ├── FloconScaffold.kt │ │ │ ├── FloconSection.kt │ │ │ ├── FloconSlider.kt │ │ │ ├── FloconSurface.kt │ │ │ ├── FloconSwitch.kt │ │ │ ├── FloconTextButton.kt │ │ │ ├── FloconTextField.kt │ │ │ ├── FloconVerticalScrollbar.kt │ │ │ ├── escape │ │ │ │ ├── EscapeHandler.kt │ │ │ │ └── LocalEscapeHandlerStack.kt │ │ │ └── panel │ │ │ │ ├── FloconPanel.kt │ │ │ │ ├── FloconPanelController.kt │ │ │ │ └── FloconPanelDisplayer.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── FloconShape.kt │ │ │ └── Typography.kt │ │ └── desktopMain │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── openflocon │ │ │ └── library │ │ │ └── designsystem │ │ │ └── components │ │ │ └── FloconVerticalScrollbar.desktop.kt │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── library │ │ └── designsystem │ │ └── common │ │ └── ClipboardManager.desktop.kt ├── navigation │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── openflocon │ │ └── navigation │ │ ├── FloconNavigation.kt │ │ ├── FloconNavigationState.kt │ │ ├── FloconRoute.kt │ │ ├── LoadingRoute.kt │ │ └── scene │ │ ├── DialogScene.kt │ │ ├── InnerWindowScene.kt │ │ ├── PanelScene.kt │ │ └── WindowScene.kt ├── release.sh └── settings.gradle.kts ├── LICENSE ├── README.md ├── docs ├── about.md ├── analytics.md ├── dashboard.md ├── database.md ├── deeplink.md ├── files.md ├── grpc.md ├── image.md ├── index.md ├── network.md ├── setup.md ├── sharedpref.md └── table.md └── mkdocs.yml /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/ISSUE_TEMPLATE/feature-report.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ### Description 2 | 3 | 4 | 5 | /gemini review 6 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/android_pr_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/android_pr_check.yml -------------------------------------------------------------------------------- /.github/workflows/create_desktop_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/create_desktop_builds.yml -------------------------------------------------------------------------------- /.github/workflows/desktop_pr_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/desktop_pr_check.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish_android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/publish_android.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/.gitignore -------------------------------------------------------------------------------- /FloconAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/.gitignore -------------------------------------------------------------------------------- /FloconAndroid/.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /FloconAndroid/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/datastores-no-op/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/datastores-no-op/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores-no-op/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/datastores-no-op/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/datastores-no-op/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores-no-op/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/datastores-no-op/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores-no-op/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/datastores/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/datastores/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/datastores/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/datastores/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/datastores/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/datastores/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/androidMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/androidMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/androidMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/androidMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/FloconApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/FloconApp.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/analytics/model/TableItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/analytics/model/TableItem.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/ButtonDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/ButtonDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/CheckBoxDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/CheckBoxDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/DashboardDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/DashboardDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/FormDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/FormDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/HtmlDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/HtmlDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/MarkdownDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/MarkdownDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/PlainTextDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/PlainTextDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/SectionDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/SectionDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/TextDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/TextDsl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/TextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/dsl/TextField.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/model/Dashboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/model/Dashboard.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/FloconTablesPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/FloconTablesPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/builder/TableBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/builder/TableBuilder.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/model/TableItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/model/TableItem.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/commonMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/iosMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/iosMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/iosMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/iosMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconLogger.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-base/src/jvmMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-base/src/jvmMain/kotlin/io/github/openflocon/flocon/utils/PlatformUtils.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/src/androidMain/kotlin/io/github/openflocon/flocon/Flocon.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/src/androidMain/kotlin/io/github/openflocon/flocon/Flocon.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/src/commonMain/kotlin/io/github/openflocon/flocon/Flocon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/src/commonMain/kotlin/io/github/openflocon/flocon/Flocon.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/src/iosMain/kotlin/io/github/openflocon/flocon/Flocon.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/src/iosMain/kotlin/io/github/openflocon/flocon/Flocon.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon-no-op/src/jvmMain/kotlin/io/github/openflocon/flocon/Flocon.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon-no-op/src/jvmMain/kotlin/io/github/openflocon/flocon/Flocon.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/flocon/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/flocon/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/flocon/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/Flocon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/Flocon.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconBroadcastReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconBroadcastReceiver.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconCore.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconCore.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconFile.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/FloconFile.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/ServerHost.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/ServerHost.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/core/AppInfos.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/core/AppInfos.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/utils/AppUtils.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/utils/NetUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/utils/NetUtils.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClientAndroid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClientAndroid.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.android.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/androidMain/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/androidMain/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/FloconCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/FloconCore.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/FloconFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/FloconFile.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/Protocol.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/Protocol.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/ServerHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/ServerHost.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/client/FloconClientImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/client/FloconClientImpl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/AppInfos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/AppInfos.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconEncoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconEncoder.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconFileSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconFileSender.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconMessageSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconMessageSender.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/core/FloconPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconFileInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconFileInfo.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconMessageFromServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconMessageFromServer.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconMessageToServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/model/FloconMessageToServer.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/analytics/FloconAnalyticsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/analytics/FloconAnalyticsPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/FloconDashboardDSL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/FloconDashboardDSL.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/FloconDashboardPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/FloconDashboardPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/mapper/JsonMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/mapper/JsonMapper.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/model/DashboardCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/dashboard/model/DashboardCallback.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/FloconDeeplinksPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/FloconDeeplinksPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/Mapping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/Mapping.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/model/DeeplinksRemote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/deeplinks/model/DeeplinksRemote.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/BadQualityToJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/BadQualityToJson.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/MockResponseToJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/MockResponseToJson.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/Websocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/network/mapper/Websocket.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/FloconTablesPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/FloconTablesPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/model/TableItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/plugins/tables/model/TableItem.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/MessagesQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/commonMain/kotlin/io/github/openflocon/flocon/websocket/MessagesQueue.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/Flocon.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/Flocon.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/FloconCore.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/FloconCore.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/FloconFile.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/FloconFile.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/ServerHost.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/ServerHost.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/core/AppInfos.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/core/AppInfos.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/iosMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.ios.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/Flocon.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/Flocon.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconCore.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconCore.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconFile.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/FloconFile.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/ServerHost.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/ServerHost.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/core/AppInfos.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/core/AppInfos.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/database/FloconDatabasePlugin.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/device/FloconDevicePluginImpl.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/device/GetAppIconUtils.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/files/FloconFilesPlugin.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/plugins/network/FloconNetworkPluginImpl.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/websocket/FloconHttpClient.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/flocon/src/jvmMain/kotlin/io/github/openflocon/flocon/websocket/FloconWebSocketClient.jvm.kt -------------------------------------------------------------------------------- /FloconAndroid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradle.properties -------------------------------------------------------------------------------- /FloconAndroid/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradle/libs.versions.toml -------------------------------------------------------------------------------- /FloconAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FloconAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FloconAndroid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradlew -------------------------------------------------------------------------------- /FloconAndroid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/gradlew.bat -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/BadQuality.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/BadQuality.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/model/GrpcHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/model/GrpcHeader.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/model/RequestHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-base/src/main/kotlin/io/github/openflocon/flocon/grpc/model/RequestHolder.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-lite/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-lite/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-lite/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-lite/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-lite/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-lite/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor-lite/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor-lite/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcFormatter.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-interceptor/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-interceptor/src/main/kotlin/io/github/openflocon/flocon/grpc/FloconGrpcInterceptor.kt -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-test-server/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-test-server/clone.sh -------------------------------------------------------------------------------- /FloconAndroid/grpc/grpc-test-server/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/grpc/grpc-test-server/start.sh -------------------------------------------------------------------------------- /FloconAndroid/iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp.xcodeproj/xcuserdata/florentchampigny.xcuserdatad/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp.xcodeproj/xcuserdata/florentchampigny.xcuserdatad/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp.xcodeproj/xcuserdata/florentchampigny.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp.xcodeproj/xcuserdata/florentchampigny.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FloconAndroid/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor-no-op/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor-no-op/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor-no-op/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor-no-op/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor-no-op/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor-no-op/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor-no-op/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/FloconKtorPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor-no-op/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/FloconKtorPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/BadQuality.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/BadQuality.kt -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/FloconKtorPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/FloconKtorPlugin.kt -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/Mocks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/Mocks.kt -------------------------------------------------------------------------------- /FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/ktor-interceptor/src/commonMain/kotlin/io/github/openflocon/flocon/ktor/Utils.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor-no-op/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor-no-op/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor-no-op/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor-no-op/src/main/kotlin/io/github/openflocon/flocon/okhttp/OkHttpInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor-no-op/src/main/kotlin/io/github/openflocon/flocon/okhttp/OkHttpInterceptor.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/BadQuality.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/BadQuality.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/Mock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/Mock.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/OkHttpInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/OkHttpInterceptor.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/Utils.kt -------------------------------------------------------------------------------- /FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/websocket/FloconWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/okhttp-interceptor/src/main/kotlin/io/github/openflocon/flocon/okhttp/websocket/FloconWebSocket.kt -------------------------------------------------------------------------------- /FloconAndroid/publishLocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/publishLocal.sh -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/proguard-rules.pro -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/release.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/release.jks -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/graphql/GetUserInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/graphql/GetUserInfo.graphql -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/graphql/GetUserRepositories.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/graphql/GetUserRepositories.graphql -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/graphql/schema.json -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyHttpCaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyHttpCaller.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyHttpKtorCaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyHttpKtorCaller.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyWebsocketCaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/DummyWebsocketCaller.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/MainActivity.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/dashboard/user/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/dashboard/user/User.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/DogDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/DogDatabase.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/FoodDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/FoodDatabase.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/dao/DogDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/dao/DogDao.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/dao/FoodDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/database/dao/FoodDao.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/graphql/GraphQlTester.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/graphql/GraphQlTester.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/grpc/InitializeGrpc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/grpc/InitializeGrpc.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/ImagesListView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/ImagesListView.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Color.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Theme.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/java/io/github/openflocon/flocon/myapplication/ui/theme/Type.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/proto/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/proto/helloworld.proto -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-android-only/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-android-only/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/README.md -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/build.gradle.kts -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/androidMain/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/androidMain/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/iosMain/kotlin/com/florent37/myapplication/Databases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/iosMain/kotlin/com/florent37/myapplication/Databases.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/iosMain/kotlin/com/florent37/myapplication/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/iosMain/kotlin/com/florent37/myapplication/MainViewController.kt -------------------------------------------------------------------------------- /FloconAndroid/sample-multiplatform/src/jvmMain/kotlin/io/github/openflocon/flocon/myapplication/multi/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/sample-multiplatform/src/jvmMain/kotlin/io/github/openflocon/flocon/myapplication/multi/Main.kt -------------------------------------------------------------------------------- /FloconAndroid/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconAndroid/settings.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/.editorconfig -------------------------------------------------------------------------------- /FloconDesktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/.gitignore -------------------------------------------------------------------------------- /FloconDesktop/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.compile.nullAnalysis.mode": "automatic" 3 | } -------------------------------------------------------------------------------- /FloconDesktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/README.md -------------------------------------------------------------------------------- /FloconDesktop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/composeApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/proguard-rules.pro -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/27.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/28.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/29.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/30.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/31.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/32.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/33.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/34.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/35.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/36.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/37.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/38.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/39.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/40.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/41.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/43.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/44.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/45.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/46.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/47.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/48.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/49.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/50.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/51.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/52.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/53.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/54.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/55.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/56.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/57.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/58.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/59.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/60.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/61.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/62.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/63.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/64.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/65.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/66.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/67.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/68.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/69.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/70.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/71.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/72.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/73.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/schemas/io.github.openflocon.flocondesktop.common.db.AppDatabase/74.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/app_icon.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/app_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/app_icon_small.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/arrow_up_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/arrow_up_cropped.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/graphql.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/grpc.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/drawable/smartphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/drawable/smartphone.png -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/files/aboutlibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/files/aboutlibraries.json -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/AppWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/AppWindow.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/adb/AdbRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/adb/AdbRepositoryImpl.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppAction.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppScreen.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppUiState.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/AppViewModel.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ContentUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ContentUiState.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/InitialSetupStateHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/InitialSetupStateHolder.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/MenuScene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/MenuScene.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/di/AppModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/di/AppUiModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/di/AppUiModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/delegates/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/delegates/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/model/AppUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/model/AppUiState.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/model/SubScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/model/SubScreen.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/AboutScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/AboutScreen.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/app/ui/settings/Navigation.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/AdbExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/AdbExecutor.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/db/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/db/AppDatabase.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/db/RoomModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/db/RoomModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/di/CommmonModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/di/CommmonModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/ContextualView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/ContextualView.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/IsInPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/IsInPreview.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/JsonPrettyPrinter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/ui/JsonPrettyPrinter.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/Link.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/Link.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/OpenFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/OpenFile.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/ViewModelExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/common/utils/ViewModelExt.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/data/di/CoreDataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/data/di/CoreDataModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/data/settings/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/data/settings/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/di/CoreModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/core/di/CoreModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/FeaturesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/FeaturesModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/analytics/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/analytics/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/crashreporter/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/crashreporter/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/dashboard/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/dashboard/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/database/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/database/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/deeplinks/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/deeplinks/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/files/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/files/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/files/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/files/Navigation.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/images/Navigation.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/network/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/network/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/network/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/network/Navigation.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/table/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/table/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/table/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/features/table/Navigation.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/messages/di/MessagesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonMain/kotlin/io/github/openflocon/flocondesktop/messages/di/MessagesModule.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonTest/kotlin/com/florent37/flocondesktop/ComposeAppCommonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonTest/kotlin/com/florent37/flocondesktop/ComposeAppCommonTest.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/commonTest/kotlin/com/florent37/flocondesktop/DeeplinkParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/commonTest/kotlin/com/florent37/flocondesktop/DeeplinkParserTest.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/Main.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/AboutScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/AboutScreen.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/Contributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/Contributor.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/ContributorView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/about/ContributorView.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/common/AdbExecutor.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/common/AdbExecutor.desktop.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/common/utils/Link.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/common/utils/Link.desktop.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowConst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowConst.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowExt.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowStateData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowStateData.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowStateSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/kotlin/io/github/openflocon/flocondesktop/window/WindowStateSaver.kt -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/resources/files/flocon_big.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/resources/files/flocon_big.icns -------------------------------------------------------------------------------- /FloconDesktop/composeApp/src/desktopMain/resources/files/flocon_big.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/composeApp/src/desktopMain/resources/files/flocon_big.ico -------------------------------------------------------------------------------- /FloconDesktop/data/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/data/core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/analytics/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/analytics/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/crashreporter/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/crashreporter/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/dashboard/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/dashboard/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/database/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/database/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/deeplink/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/deeplink/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/files/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/files/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/images/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/images/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/messages/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/messages/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/network/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/network/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/sharedpreference/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/sharedpreference/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/table/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/table/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/versions/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/core/src/commonMain/kotlin/io/github/openflocon/data/core/versions/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/data/local/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/dao/AdbDevicesDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/dao/AdbDevicesDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/mapper/AdbLocalMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/adb/mapper/AdbLocalMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/analytics/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/analytics/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/crashreporter/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/crashreporter/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/dashboard/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/dashboard/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/dashboard/mapper/EntityMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/dashboard/mapper/EntityMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/dao/QueryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/dao/QueryDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/dao/TablesDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/dao/TablesDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/database/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/dao/FloconDeeplinkDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/dao/FloconDeeplinkDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/models/DeeplinkEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/deeplink/models/DeeplinkEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/device/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/device/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/dao/FloconFileDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/dao/FloconFileDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/models/FileEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/models/FileEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/models/FileOptionsEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/files/models/FileOptionsEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/dao/FloconImageDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/dao/FloconImageDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/images/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/FloconNetworkDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/FloconNetworkDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkFilterDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkFilterDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkMocksDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkMocksDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkSettingsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/dao/NetworkSettingsDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/FilterMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/FilterMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MapperToDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MapperToDomain.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MapperToEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MapperToEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MockMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/mapper/MockMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/utils/ExportCsv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/utils/ExportCsv.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/utils/ImportFromCsv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/network/utils/ImportFromCsv.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/sharedpreference/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/sharedpreference/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/dao/FloconTableDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/dao/FloconTableDao.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/mapper/MapperToEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/mapper/MapperToEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/models/TableEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/models/TableEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/models/TableItemEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/local/src/commonMain/kotlin/io/github/openflocon/data/local/table/models/TableItemEntity.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/data/remote/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/mapper/DataMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/mapper/DataMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/model/AnalyticsItemDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/analytics/model/AnalyticsItemDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/common/JsonExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/common/JsonExt.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/crashreporter/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/crashreporter/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/crashreporter/mapper/DataMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/crashreporter/mapper/DataMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/dashboard/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/dashboard/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/dashboard/mapper/DataMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/dashboard/mapper/DataMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/database/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/database/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/database/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/database/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/deeplink/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/deeplink/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/device/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/device/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/device/model/RegisterDeviceDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/device/model/RegisterDeviceDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/FromDeviceFilesDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/FromDeviceFilesDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceDeleteFileMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceDeleteFileMessage.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceGetFileMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceGetFileMessage.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceGetFilesMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/files/models/ToDeviceGetFilesMessage.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/messages/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/messages/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/messages/mapper/FloconIncomingMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/messages/mapper/FloconIncomingMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/models/FloconIncomingMessageDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/models/FloconIncomingMessageDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/models/FloconOutgoingMessageDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/models/FloconOutgoingMessageDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/Mapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkDomainExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkDomainExtractor.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkMethodExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkMethodExtractor.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkQueryExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkQueryExtractor.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkStatusExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/network/mapper/NetworkStatusExtractor.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/server/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/server/Server.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/sharedpreference/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/sharedpreference/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/mapper/DataMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/mapper/DataMapper.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/model/TableColumnDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/model/TableColumnDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/model/TableItemDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/table/model/TableItemDataModel.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/version/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/version/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/version/model/GithubReleaseRemote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonMain/kotlin/com/flocon/data/remote/version/model/GithubReleaseRemote.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/commonTest/kotlin/com/flocon/data/remote/network/mapper/MapperTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/commonTest/kotlin/com/flocon/data/remote/network/mapper/MapperTest.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/desktopMain/kotlin/com/flocon/data/remote/server/Server.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/desktopMain/kotlin/com/flocon/data/remote/server/Server.desktop.kt -------------------------------------------------------------------------------- /FloconDesktop/data/remote/src/desktopMain/kotlin/com/flocon/data/remote/server/ServerJvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/data/remote/src/desktopMain/kotlin/com/flocon/data/remote/server/ServerJvm.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/domain/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/Constant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/Constant.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/Protocol.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/Protocol.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/AdbCommandTargetDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/AdbCommandTargetDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/ExecuteAdbCommandUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/ExecuteAdbCommandUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/model/AdbCommandTargetDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/model/AdbCommandTargetDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/model/DeviceWithSerialDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/model/DeviceWithSerialDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/repository/AdbRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/adb/repository/AdbRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/analytics/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/analytics/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/analytics/models/AnalyticsTableId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/analytics/models/AnalyticsTableId.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/ByteFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/ByteFormatter.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Combines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Combines.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/DispatcherProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/DispatcherProvider.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Either.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Either.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Tuple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/Tuple.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/time/TimeFormatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/common/time/TimeFormatter.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/crashreporter/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/crashreporter/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/models/DashboardDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/models/DashboardDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/models/DashboardId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/dashboard/models/DashboardId.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/database/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/database/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/database/repository/DatabaseRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/database/repository/DatabaseRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/models/DeeplinkDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/models/DeeplinkDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/repository/DeeplinkRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/deeplink/repository/DeeplinkRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/AppInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/AppInstance.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/AppPackageName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/AppPackageName.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceAppDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceAppDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceId.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceWithAppDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/DeviceWithAppDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/RecordingDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/models/RecordingDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/repository/DevicesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/repository/DevicesRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/DeleteDeviceUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/DeleteDeviceUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/HandleNewAppUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/HandleNewAppUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/HandleNewDeviceUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/HandleNewDeviceUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/ObserveDevicesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/ObserveDevicesUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/RestartAppUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/RestartAppUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/SelectDeviceAppUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/SelectDeviceAppUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/SelectDeviceUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/SelectDeviceUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/TakeScreenshotUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/device/usecase/TakeScreenshotUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/feedback/FeedbackDisplayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/feedback/FeedbackDisplayer.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/feedback/FeedbackDisplayerHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/feedback/FeedbackDisplayerHandler.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/models/FileDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/models/FileDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/models/FilePathDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/models/FilePathDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/repository/FilesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/repository/FilesRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/usecase/DeleteFileUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/usecase/DeleteFileUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/usecase/DownloadFileUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/files/usecase/DownloadFileUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/models/DeviceImageDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/models/DeviceImageDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/repository/ImagesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/repository/ImagesRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/usecase/ObserveImagesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/images/usecase/ObserveImagesUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/repository/MessagesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/repository/MessagesRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/usecase/StartServerUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/messages/usecase/StartServerUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/models/TextFilterStateDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/models/TextFilterStateDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/models/settings/NetworkSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/models/settings/NetworkSettings.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/MockDeviceTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/MockDeviceTarget.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/MockNetworkDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/MockNetworkDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/NetworkSortDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/NetworkSortDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/NetworkWebsocketId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/NetworkWebsocketId.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/SearchScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/models/SearchScope.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/repository/NetworkRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/repository/NetworkRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/usecase/DecodeJwtTokenUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/network/usecase/DecodeJwtTokenUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/repository/SettingsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/repository/SettingsRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/usecase/InitAdbPathUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/usecase/InitAdbPathUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/usecase/TestAdbUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/settings/usecase/TestAdbUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/sharedpreference/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/sharedpreference/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/models/TableDomainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/models/TableDomainModel.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/models/TableId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/models/TableId.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/repository/TableRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/repository/TableRepository.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/usecase/ExportTableToCsvUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/usecase/ExportTableToCsvUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/usecase/RemoveTableItemUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/table/usecase/RemoveTableItemUseCase.kt -------------------------------------------------------------------------------- /FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/versions/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/domain/src/commonMain/kotlin/io/github/openflocon/domain/versions/DI.kt -------------------------------------------------------------------------------- /FloconDesktop/generateAboutLibraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/generateAboutLibraries.sh -------------------------------------------------------------------------------- /FloconDesktop/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradle.properties -------------------------------------------------------------------------------- /FloconDesktop/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradle/libs.versions.toml -------------------------------------------------------------------------------- /FloconDesktop/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FloconDesktop/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FloconDesktop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradlew -------------------------------------------------------------------------------- /FloconDesktop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/gradlew.bat -------------------------------------------------------------------------------- /FloconDesktop/library/designsystem/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/library/designsystem/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/library/designsystem/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/navigation/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FloconDesktop/navigation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/build.gradle.kts -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconNavigation.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconNavigationState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconNavigationState.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/FloconRoute.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/LoadingRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/LoadingRoute.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/DialogScene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/DialogScene.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/InnerWindowScene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/InnerWindowScene.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/PanelScene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/PanelScene.kt -------------------------------------------------------------------------------- /FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/WindowScene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/navigation/src/commonMain/kotlin/io/github/openflocon/navigation/scene/WindowScene.kt -------------------------------------------------------------------------------- /FloconDesktop/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/release.sh -------------------------------------------------------------------------------- /FloconDesktop/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/FloconDesktop/settings.gradle.kts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/README.md -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/analytics.md -------------------------------------------------------------------------------- /docs/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/dashboard.md -------------------------------------------------------------------------------- /docs/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/database.md -------------------------------------------------------------------------------- /docs/deeplink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/deeplink.md -------------------------------------------------------------------------------- /docs/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/files.md -------------------------------------------------------------------------------- /docs/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/grpc.md -------------------------------------------------------------------------------- /docs/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/image.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/network.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/sharedpref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/sharedpref.md -------------------------------------------------------------------------------- /docs/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/docs/table.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openflocon/Flocon/HEAD/mkdocs.yml --------------------------------------------------------------------------------