{"id":13554873,"url":"https://github.com/internxt/drive-mobile","last_synced_at":"2026-03-03T08:51:12.407Z","repository":{"id":38345959,"uuid":"151593570","full_name":"internxt/drive-mobile","owner":"internxt","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-02T17:05:59.000Z","size":65231,"stargazers_count":103,"open_issues_count":13,"forks_count":18,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-03-02T19:59:53.166Z","etag":null,"topics":["android","apple","encryption","google","ios","secure"],"latest_commit_sha":null,"homepage":"https://internxt.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/internxt.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-10-04T15:23:47.000Z","updated_at":"2026-02-24T15:15:45.000Z","dependencies_parsed_at":"2024-01-04T10:27:32.041Z","dependency_job_id":"f48fc903-59ae-4b65-8719-d86448542840","html_url":"https://github.com/internxt/drive-mobile","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/internxt/drive-mobile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/internxt%2Fdrive-mobile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/internxt%2Fdrive-mobile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/internxt%2Fdrive-mobile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/internxt%2Fdrive-mobile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/internxt","download_url":"https://codeload.github.com/internxt/drive-mobile/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/internxt%2Fdrive-mobile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30038544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T06:58:30.252Z","status":"ssl_error","status_checked_at":"2026-03-03T06:58:15.329Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["android","apple","encryption","google","ios","secure"],"created_at":"2024-08-01T12:02:56.826Z","updated_at":"2026-03-03T08:51:12.374Z","avatar_url":"https://github.com/internxt.png","language":"TypeScript","readme":"[![Build Status](https://travis-ci.com/internxt/drive-mobile.svg?branch=master)](https://travis-ci.com/internxt/drive-mobile)\n![GitHub](https://img.shields.io/github/license/internxt/drive-mobile)\n\n# Internxt Drive Mobile\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./assets/icon.png?raw=true\" style=\"width: 200px; max-width: 200px\" /\u003e\n\u003c/p\u003e\n\u003cp align=\"center\" style=\"margin-top: 10px;\"\u003eInternxt\u003c/p\u003e\n\n## Requirements\n\n- JDK version: 11\n- SDK version: 29 or 30\n\nIn case that you open the project in Android Studio:\n\n- NDK version: 21.1.6\n- CMake version: 3.10.2\n\n## Setup\n\nFollow these steps before running the project.\n\n### 1. Installation\n\n- Create a `.npmrc` file from the `.npmrc.template` example provided in the repo.\n- Replace `TOKEN` with your own [Github Personal Access Token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token) with `read:packages` permission **ONLY**\n- Use `yarn` to install project dependencies.\n\n### 2. Environment\n\nIn order to configure the environment, you have to create **/env/.env.development.json** and **/env/.env.production.json** files.\n\nTake a look to **/env/.env.example.json** file to know the required environment variables.\n\n\u003c/br\u003e\n\u003chr\u003e\n\u003c/br\u003e\n\n## Development\n\nRemember to run the tailwind command during development to dynamically add and remove styles from src/styles/tailwind.json depending on the used classes:\n\n```bash\nyarn tailwind:dev\n```\n\n\u003c/br\u003e\n\u003chr\u003e\n\u003c/br\u003e\n\n## Android\n\nWe can run the android application in any operating system, although for each one we will have to follow some different steps\n\n### Android installation\n\n#### Ports mapping\n\nIn order **to connect a real device or an emulator to localhost** interface, we have to map used ports in our computer with the device ports.\n\nFirst list the connected devices:\n\n```bash\nadb devices\n```\n\nThen use the following command to map **DEVICE_ID** device **PORT** to your localhost **PORT**:\n\n```bash\nadb -s DEVICE_ID reverse tcp:PORT tcp:PORT\n```\n\n#### ADB (Android Debug Bridge)\n\nTo install the ADB in Mac OS or Linux, execute the following command:\n\n```bash\nbash \u003c(curl -s https://raw.githubusercontent.com/corbindavenport/nexus-tools/master/install.sh)\n```\n\n#### Dependencies\n\nOpening the project with Android Studio will install the necessary dependencies to start the application.\n\u003c/br\u003e\u003c/br\u003e\n\nIf you are using \u003cb\u003eMac OS\u003c/b\u003e an receiving the following error when during gradle sync\n\n\u003cp style=\"color: red; background: lightyellow; padding: 10px 15px;\"\u003e\n\u003cspan style=\"margin-right: 5px; font-size: 12px;\"\u003e❌\u003c/span\u003e\nCaused by: groovy.lang.MissingPropertyException: No such property: logger for class: org.gradle.initialization.DefaultProjectDescriptor\n\u003c/p\u003e\nTry opening Android Studio with the command below to ensure Android Studio is able to find Node\n\n```bash\nopen -a /Applications/Android\\ Studio.app\n```\n\n\u003c/br\u003e\n\n### Run\n\nConfigure a virtual device in Android Studio or connect by USB a real device with ADB to run the Android application with the following command using the Expo CLI:\n\n```bash\nyarn android\n```\n\n\u003c/br\u003e\n\u003chr\u003e\n\u003c/br\u003e\n\n## iOS\n\nYou can only run the iOS application on a Mac OS computer.\n\n### iOS installation\n\n```bash\ncd ios\n\npod install\n```\n\nIf your computer is using \u003cb\u003eM1 Apple chipset\u003c/b\u003e, replace the `pod install` command with the following:\n\n```bash\nsudo arch -x86_64 gem install ffi\n\narch -x86_64 pod install\n```\n\n### Run\n\n```bash\nyarn ios\n```\n\n\u003c/br\u003e\n\u003chr\u003e\n\u003c/br\u003e\n\n## Known issues\n\nCurrent react-native-reanimated fails with Android using RN 0.64, until we upgrade RN version, a patch needs to be added manually:\nhttps://github.com/software-mansion/react-native-reanimated/issues/3161#issuecomment-1112285417\n\n## Test\n\nThis is what you should know about project testing.\n\nTake a look to this official article about [testing in React Native](https://reactnative.dev/docs/testing-overview).\n\n### E2E\n\n- [Getting Started | Detox](https://wix.github.io/Detox/docs/introduction/getting-started/)\n- [Jest Setup Guide | Detox](https://wix.github.io/Detox/docs/guide/jest)\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finternxt%2Fdrive-mobile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finternxt%2Fdrive-mobile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finternxt%2Fdrive-mobile/lists"}