{"id":25703437,"url":"https://github.com/dashpay/kotlin-platform","last_synced_at":"2026-04-02T19:11:10.903Z","repository":{"id":228427788,"uuid":"773838362","full_name":"dashpay/kotlin-platform","owner":"dashpay","description":"Dash Platform Library for JVM","archived":false,"fork":false,"pushed_at":"2026-03-30T22:48:58.000Z","size":1741,"stargazers_count":8,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-03-31T00:32:33.020Z","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/dashpay.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":"2024-03-18T13:43:05.000Z","updated_at":"2026-03-30T22:48:31.000Z","dependencies_parsed_at":"2024-05-17T16:34:33.688Z","dependency_job_id":"6d4d2f02-2216-4477-8b01-5e8bb3d9604f","html_url":"https://github.com/dashpay/kotlin-platform","commit_stats":null,"previous_names":["hashengineering/kotlin-platform","dashpay/kotlin-platform"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/dashpay/kotlin-platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fkotlin-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fkotlin-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fkotlin-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fkotlin-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dashpay","download_url":"https://codeload.github.com/dashpay/kotlin-platform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fkotlin-platform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31314079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2025-02-25T05:29:36.657Z","updated_at":"2026-04-02T19:11:10.895Z","avatar_url":"https://github.com/dashpay.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kotlin-platform\nkotlin-platform is the library that supports Platform functionality for the Java VM on desktop and Android devices.\n\n## Directory Layout\n* _dash-sdk-android_ - This is for the Dash SDK that supports platform for all Android architectures\n* _dash-sdk-bindings_ - This generates the primary Dash SDK header and the shared library for Java bindings for the local machine\n* _dash-sdk-java_ - This is for the Dash SDK that supports platform for the local environment\n* _dpp_ - This is the Kotlin Dash SDK for Platfrom\n  * This is a more simple interface than `dash-sdk-java` that supports the needs of the DashPay app which uses `dpns` and `dashpay` data contracts.\n  * It depends on `dash-sdk-java` and `dash-sdk-android` if targeting android\n* _examples_ - Contains many example programs that perform some platform operations\n* _platform-mobile_ - A rust crate used by `dash-sdk-android` and `dash-sdk-java` that supports many Platform DAPI operations\n* _tools_ - a module that contains the WalletTool program\n\n## Build Instructions\nSee [dash-sdk-bindings readme](dash-sdk-bindings/README.md) for build instructions of the basic bindings system. \nPerform these steps first.\n\n### Java Bindings for Desktop\nSee [dash-sdk-java readme](dash-sdk-java/README.md) for build instructions of the Java bindings.\nPerform these steps second.\n* This will generate the Java classes for the Java bindings and the shared library that\nsupports the current environment\n* There are currently problems when running on Linux 64-bit systems.  Mac M1 systems work well.  No other systems have been tested.\n\n### Java Bindings for Android\n\nBuild the android libraries for the local machine (only works on Mac)\n```bash\n./gradlew publishToMavenLocal\n```\nBuild the android libraries to publish to Maven Central:\n1) Verify release \u0026 deploy configuration\n```bash\n./gradlew jreleaserConfig\n```\n2) Ensure a clean deployment\n```bash\n./gradlew clean\n```\n3) Generate all needed code for SWIG and Protobuf\n```bash\n./gradlew generateSWIG \u0026\u0026 ./gradlew generateProto\n```\n4) Stage all artifacts to a local directory\n```bash\n./gradlew publish\n```\n5) Deploy and release\n```bash\n./gradlew jreleaserDeploy\n```\n### Use in other projects\n```groovy\ndppVersion = \"2.0.4\"\ndependencies {\n    implementation \"org.dashj.platform:dash-sdk-java:$dppVersion\"\n    implementation \"org.dashj.platform:dash-sdk-kotlin:$dppVersion\" // dpp\n    implementation \"org.dashj.platform:dash-sdk-android:$dppVersion\" // for android only\n}\n```\n\n### Operating Systems\nCurrently only building for Android on a Mac is supported.\n\n| **build system**     | **Android (arm32)**       | **Android (arm64)** | **Android (x86)**         | **Android (x86_64)** | **Windows (x86_64)** | **Mac (arm64)** | **Mac (x86_64)** | **Linux (arm64)** | **Linux (x86_64)** |\n|----------------------|---------------------------|---------------------|---------------------------|----------------------|----------------------|-----------------|------------------|-------------------|--------------------|\n| **Mac (arm64)**      | No 32-bit support Crashes |                     | No 32-bit support Crashes | Yes                  | N/A                  | Yes             | N/A              | N/A               | N/A                |\n| **Mac (x86_64)**     | N/A                       | N/A                 | N/A                       | N/A                  | N/A                  | N/A             | N/A              | N/A               | N/A                |\n| **Linux (arm64)**    | N/A                       | N/A                 | N/A                       | N/A                  | N/A                  | N/A             | N/A              | N/A               | N/A                |\n| **Linux (x86_64)**   | No 32-bit support Crashes | No Crashes          | No 32-bit support Crashes | No Crashes           | N/A                  | N/A             | N/A              | N/A               | N/A                |\n| **Windows (x86_64)** | Not supported             | Not supported       | Not supported             | Not supported        | Not Tested           | N/A             | N/A              | N/A               | N/A                |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Fkotlin-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdashpay%2Fkotlin-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Fkotlin-platform/lists"}