{"id":41321174,"url":"https://github.com/anod/charging-timer-ev","last_synced_at":"2026-01-23T05:53:47.750Z","repository":{"id":319315517,"uuid":"1073590461","full_name":"anod/charging-timer-ev","owner":"anod","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-03T07:11:41.000Z","size":380,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-05T00:53:54.470Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-10T10:30:05.000Z","updated_at":"2025-12-03T07:11:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"1bcab8fa-da7a-4cec-9d38-a1cebf29a914","html_url":"https://github.com/anod/charging-timer-ev","commit_stats":null,"previous_names":["anod/charging-timer-ev"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anod/charging-timer-ev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anod%2Fcharging-timer-ev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anod%2Fcharging-timer-ev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anod%2Fcharging-timer-ev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anod%2Fcharging-timer-ev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anod","download_url":"https://codeload.github.com/anod/charging-timer-ev/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anod%2Fcharging-timer-ev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28681477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-23T05:53:47.060Z","updated_at":"2026-01-23T05:53:47.738Z","avatar_url":"https://github.com/anod.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop (JVM).\n\n* [/composeApp](./composeApp/src) is for code that will be shared across your Compose Multiplatform applications.\n  It contains several subfolders:\n  - [commonMain](./composeApp/src/commonMain/kotlin) is for code that’s common for all targets.\n  - Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.\n    For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,\n    the [iosMain](./composeApp/src/iosMain/kotlin) folder would be the right place for such calls.\n    Similarly, if you want to edit the Desktop (JVM) specific part, the [jvmMain](./composeApp/src/jvmMain/kotlin)\n    folder is the appropriate location.\n\n* [/iosApp](./iosApp/iosApp) contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,\n  you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.\n\n### Build and Run Android Application\n\nTo build and run the development version of the Android app, use the run configuration from the run widget\nin your IDE’s toolbar or build it directly from the terminal:\n- on macOS/Linux\n  ```shell\n  ./gradlew :composeApp:assembleDebug\n  ```\n- on Windows\n  ```shell\n  .\\gradlew.bat :composeApp:assembleDebug\n  ```\n\n### Build and Run Desktop (JVM) Application\n\nTo build and run the development version of the desktop app, use the run configuration from the run widget\nin your IDE’s toolbar or run it directly from the terminal:\n- on macOS/Linux\n  ```shell\n  ./gradlew :composeApp:run\n  ```\n- on Windows\n  ```shell\n  .\\gradlew.bat :composeApp:run\n  ```\n\n### Build and Run Web Application\n\nTo build and run the development version of the web app, use the run configuration from the run widget\nin your IDE's toolbar or run it directly from the terminal:\n- for the Wasm target (faster, modern browsers):\n  - on macOS/Linux\n    ```shell\n    ./gradlew :composeApp:wasmJsBrowserDevelopmentRun\n    ```\n  - on Windows\n    ```shell\n    .\\gradlew.bat :composeApp:wasmJsBrowserDevelopmentRun\n    ```\n- for the JS target (slower, supports older browsers):\n  - on macOS/Linux\n    ```shell\n    ./gradlew :composeApp:jsBrowserDevelopmentRun\n    ```\n  - on Windows\n    ```shell\n    .\\gradlew.bat :composeApp:jsBrowserDevelopmentRun\n    ```\n\n### Build and Run iOS Application\n\nTo build and run the development version of the iOS app, use the run configuration from the run widget\nin your IDE’s toolbar or open the [/iosApp](./iosApp) directory in Xcode and run it from there.\n\n---\n\nLearn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html),\n[Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform/#compose-multiplatform),\n[Kotlin/Wasm](https://kotl.in/wasm/)…\n\nWe would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel [#compose-web](https://slack-chats.kotlinlang.org/c/compose-web).\nIf you face any issues, please report them on [YouTrack](https://youtrack.jetbrains.com/newIssue?project=CMP).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanod%2Fcharging-timer-ev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanod%2Fcharging-timer-ev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanod%2Fcharging-timer-ev/lists"}