{"id":15069147,"url":"https://github.com/lexilabs-app/basic","last_synced_at":"2025-04-10T16:52:08.679Z","repository":{"id":246077485,"uuid":"819675592","full_name":"LexiLabs-App/basic","owner":"LexiLabs-App","description":"KMP Libraries for ads, images, logging, and sound. Supports Apple, Android, Javascript, Wasm, JVM, Linux, and Windows","archived":false,"fork":false,"pushed_at":"2025-02-07T20:20:54.000Z","size":1271,"stargazers_count":26,"open_issues_count":13,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-24T14:44:32.654Z","etag":null,"topics":["admob","android","apple","audio","compose","google-ads","ios","javascript","jvm","kmp","kotlin","linux","logging","macos","multiplatform","nodejs","sound","wasm","windows"],"latest_commit_sha":null,"homepage":"https://basic.lexilabs.app/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LexiLabs-App.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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},"funding":{"github":["hakz-app"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-06-25T01:45:54.000Z","updated_at":"2025-03-05T09:05:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"ace2ec0d-c300-49c8-b388-0d1703086d67","html_url":"https://github.com/LexiLabs-App/basic","commit_stats":null,"previous_names":["lexilabs-app/basic-sound"],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LexiLabs-App%2Fbasic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LexiLabs-App%2Fbasic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LexiLabs-App%2Fbasic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LexiLabs-App%2Fbasic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LexiLabs-App","download_url":"https://codeload.github.com/LexiLabs-App/basic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248256203,"owners_count":21073483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["admob","android","apple","audio","compose","google-ads","ios","javascript","jvm","kmp","kotlin","linux","logging","macos","multiplatform","nodejs","sound","wasm","windows"],"created_at":"2024-09-25T01:40:43.464Z","updated_at":"2025-04-10T16:52:08.666Z","avatar_url":"https://github.com/LexiLabs-App.png","language":"Kotlin","readme":"# Basic\n\u003cimg src=\"basic.png\" alt=\"basic\" align=\"right\"/\u003e \n\n![GitHub License](https://img.shields.io/github/license/lexilabs-app/basic)\n\nA Kotlin Multiplatform library to rapidly add basic features like pictures, logging, and audio to any project in a small and fast way.\n\n\u003e [!CAUTION]\n\u003e As of April 10th 2025, this repository has been archived and all Basic libraries have been migrated to their own separate repositories.\n\n## Repositories\n* [Basic-Ads](https://github.com/LexiLabs-App/basic-ads) [![MavenCentral](https://img.shields.io/maven-central/v/app.lexilabs.basic/basic-ads?color=blue)](https://central.sonatype.com/artifact/app.lexilabs.basic/basic-ads)\n* [Basic-Images](https://github.com/LexiLabs-App/basic-images) [![Maven Central](https://img.shields.io/maven-central/v/app.lexilabs.basic/basic-images?color=blue)](https://central.sonatype.com/artifact/app.lexilabs.basic/basic-images)\n* [Basic-Logging](https://github.com/LexiLabs-App/basic-logging) [![Maven Central](https://img.shields.io/maven-central/v/app.lexilabs.basic/basic-logging?color=blue)](https://central.sonatype.com/artifact/app.lexilabs.basic/basic-logging)\n* [Basic-Sound](https://github.com/LexiLabs-App/basic-sound) [![Maven Central](https://img.shields.io/maven-central/v/app.lexilabs.basic/basic-sound?color=blue)](https://central.sonatype.com/artifact/app.lexilabs.basic/basic-sound)\n\n## Quick Start\nAdd your dependencies from Maven\n```toml\n# in your 'gradle/libs.versions.toml' file\n[versions]\nkotlin = \"+\" # gets the latest Kotlin version\nbasic = \"+\" # gets the latest Basic version\n\n[libraries]\nbasic-ads = { group = \"app.lexilabs.basic\", name = \"basic-ads\", version.ref = \"basic\" }\nbasic-images = { group = \"app.lexilabs.basic\", name = \"basic-images\", version.ref = \"basic\" }\nbasic-logging = { group = \"app.lexilabs.basic\", name = \"basic-logging\", version.ref = \"basic\" }\nbasic-sound = { group = \"app.lexilabs.basic\", name = \"basic-sound\", version.ref = \"basic\" }\n\n[bundles]\n# remove items from bundle as desired\nbasic = [ \"basic-ads\", \"basic-images\", \"basic-logging\", \"basic-sound\" ]\n```\nthen include the library in your gradle build\n```kotlin\n// in your 'shared/build.gradle.kts' or 'composeApp/build.gradle.kts' file\nsourceSets {\n    commonMain.dependencies {\n        implementation(libs.bundles.basic)\n    }\n}\n```","funding_links":["https://github.com/sponsors/hakz-app"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexilabs-app%2Fbasic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flexilabs-app%2Fbasic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexilabs-app%2Fbasic/lists"}