{"id":39659608,"url":"https://github.com/definednet/mobile_nebula","last_synced_at":"2026-04-10T17:28:58.390Z","repository":{"id":37455846,"uuid":"282960078","full_name":"DefinedNet/mobile_nebula","owner":"DefinedNet","description":"Brings nebula to mobile devices (iOS, Android)","archived":false,"fork":false,"pushed_at":"2026-02-06T15:17:10.000Z","size":2955,"stargazers_count":161,"open_issues_count":58,"forks_count":53,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-02-06T15:36:44.531Z","etag":null,"topics":["android","ios","nebula"],"latest_commit_sha":null,"homepage":"https://defined.net","language":"Dart","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/DefinedNet.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-07-27T16:54:00.000Z","updated_at":"2026-02-06T15:17:13.000Z","dependencies_parsed_at":"2024-01-31T18:46:25.424Z","dependency_job_id":"c5db38e5-ab40-4e1b-92fd-b9c13d1a760a","html_url":"https://github.com/DefinedNet/mobile_nebula","commit_stats":{"total_commits":82,"total_committers":7,"mean_commits":"11.714285714285714","dds":0.524390243902439,"last_synced_commit":"a5139c43350601803330fd13ca3b178d5d252393"},"previous_names":[],"tags_count":74,"template":false,"template_full_name":null,"purl":"pkg:github/DefinedNet/mobile_nebula","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DefinedNet%2Fmobile_nebula","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DefinedNet%2Fmobile_nebula/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DefinedNet%2Fmobile_nebula/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DefinedNet%2Fmobile_nebula/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DefinedNet","download_url":"https://codeload.github.com/DefinedNet/mobile_nebula/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DefinedNet%2Fmobile_nebula/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29186036,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T03:35:06.566Z","status":"ssl_error","status_checked_at":"2026-02-07T03:34:57.604Z","response_time":63,"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":["android","ios","nebula"],"created_at":"2026-01-18T09:22:48.421Z","updated_at":"2026-04-10T17:28:58.379Z","avatar_url":"https://github.com/DefinedNet.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mobile Nebula\n\n[Play Store](https://play.google.com/store/apps/details?id=net.defined.mobile_nebula\u0026hl=en_US\u0026gl=US) | [App Store](https://apps.apple.com/us/app/mobile-nebula/id1509587936)\n\n## Setting up dev environment\n\nInstall all of the following things:\n\n- [`xcode`](https://apps.apple.com/us/app/xcode/) - use the version specified by `xcode_select` in `/ios/fastlane/Fastfile`\n- [`android-studio`](https://developer.android.com/studio)\n- [`flutter` 3.41.4](https://docs.flutter.dev/get-started/install)\n- [`gomobile`](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile)\n- [Flutter Android Studio Extension](https://docs.flutter.dev/get-started/editor?tab=androidstudio)\n\nEnsure your path is set up correctly to execute flutter\n\nRun `flutter doctor` and fix everything it complains before proceeding\n\n*NOTE* on iOS, always open `Runner.xcworkspace` and NOT the `Runner.xccodeproj`\n\n### Before first compile\n\n- Copy `env.sh.example` and set it up for your machine\n- Ensure you have run `gomobile init`\n- In Android Studio, make sure you have the current ndk installed by going to Tools -\u003e SDK Manager, go to the SDK Tools tab, check the `Show package details` box, expand the NDK section and select `28.2.13676358` version.\n- Ensure you have downloaded an ndk via android studio, this is likely not the default one and you need to check the\n  `Show package details` box to select the correct version. The correct version comes from the error when you try and compile\n- Make sure you have `gem` installed with `sudo gem install`\n- If on MacOS arm, `sudo gem install ffi -- --enable-libffi-alloc`\n\nIf you are having issues with iOS pods, try blowing it all away! `cd ios \u0026\u0026 rm -rf Pods/ Podfile.lock \u0026\u0026 pod install --repo-update`\n\n# Formatting\n\n`dart format` can be used to format the code in `lib` and `test`.  We use a line-length of 120 characters.\n\nUse:\n```sh\ndart format lib/ test/ -l 120\n```\n\nIn Android Studio, set the line length using Preferences -\u003e Editor -\u003e Code Style -\u003e Dart -\u003e Line length, set it to 120.  Enable auto-format with Preferences -\u003e Languages \u0026 Frameworks -\u003e Flutter -\u003e Format code on save.\n\n`./swift-format.sh` can be used to format Swift code in the repo.\n\nOnce `swift-format` supports ignoring directories (\u003chttps://github.com/swiftlang/swift-format/issues/870\u003e), we can move to a method of running it more like what \u003chttps://calebhearth.com/swift-format-github-action\u003e describes.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinednet%2Fmobile_nebula","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdefinednet%2Fmobile_nebula","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinednet%2Fmobile_nebula/lists"}