{"id":30196284,"url":"https://github.com/namanabbad02/jobsfeed","last_synced_at":"2026-04-13T13:01:49.621Z","repository":{"id":309245231,"uuid":"1035591813","full_name":"namanabbad02/JobsFeed","owner":"namanabbad02","description":"A React Native mobile application, featuring a job feed and settings screen. Built with a focus on professional UI/UX, clean code architecture, and native module integration.","archived":false,"fork":false,"pushed_at":"2025-08-19T09:27:23.000Z","size":1981,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-19T11:34:31.347Z","etag":null,"topics":["adb","android-sdk","android-studio","gradle","javascript","metro-bundler","npm","react-native"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/namanabbad02.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}},"created_at":"2025-08-10T18:10:48.000Z","updated_at":"2025-08-19T09:27:27.000Z","dependencies_parsed_at":"2025-08-10T20:34:36.756Z","dependency_job_id":"d282b63f-8e10-495a-b8a4-236f71da0a14","html_url":"https://github.com/namanabbad02/JobsFeed","commit_stats":null,"previous_names":["namanabbad02/jobsfeed"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/namanabbad02/JobsFeed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namanabbad02%2FJobsFeed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namanabbad02%2FJobsFeed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namanabbad02%2FJobsFeed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namanabbad02%2FJobsFeed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/namanabbad02","download_url":"https://codeload.github.com/namanabbad02/JobsFeed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namanabbad02%2FJobsFeed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31753551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"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":["adb","android-sdk","android-studio","gradle","javascript","metro-bundler","npm","react-native"],"created_at":"2025-08-13T05:17:36.377Z","updated_at":"2026-04-13T13:01:49.614Z","avatar_url":"https://github.com/namanabbad02.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JobsFeed - React Native Mobile App\n\nThis project is a mobile application for browsing job listings, built as a submission for the React Native Intern Assignment. The app is designed with a modern, clean, and attractive user interface and is built following best practices for code quality, folder structure, and reusability.\n\nThe application features a native splash screen, a home feed to display jobs, and a settings screen. It uses a mock data source to simulate a real-world backend.\n\n## Screenshots\n\n\n| Splash Screen                               | Home Feed                                 | Settings                                  |\n| ------------------------------------------- | ----------------------------------------- | ----------------------------------------- |\n| ![Splash Screen](screenshots/splash.png) | ![Home Feed](screenshots/home.png) | ![Settings](screenshots/settings.png) |\n\n## Features\n\n-   **True Native Splash Screen:** A professional, native launch screen with a custom logo that prevents any white flash on startup.\n-   **Dynamic Job Feed:** A scrollable home screen that displays a list of jobs from a mock data source.\n-   **Modern UI/UX:** A \"posh\" and attractive design with a clean color palette, proper spacing, and reusable components.\n-   **Apply Once Logic:** Users can apply for a job only once. The \"Apply Now\" button becomes disabled and changes its style after a job has been applied for.\n-   **Tab-Based Navigation:** Simple and intuitive navigation between the Home and Settings screens.\n-   **Visible Icons:** All icons are correctly linked and visible on Android.\n-   **Optimized for Release:** The final APK is optimized for size by splitting builds per architecture and selectively bundling only the necessary assets.\n\n## Tech Stack\n\n-   **Core:** React Native\n-   **Navigation:** React Navigation (Stack Navigator, Bottom Tab Navigator)\n-   **UI Components:** Reusable custom components (Card, Button, Header).\n-   **Icons:** `react-native-vector-icons`\n-   **Native Splash Screen:** `react-native-splash-screen`\n-   **Language:** JavaScript (ES6+), Kotlin (for Android native modules)\n-   **Build Tool:** Gradle\n\n## Folder Structure\n\nThe project follows a modular and scalable folder structure to ensure code quality and maintainability.\n\n```\nJobsFeed/\n├── src/\n│   ├── api/\n│   │   └── mockData.js         # Dummy data for the app\n│   ├── assets/\n│   │   └── images/             # App logo and other images\n│   ├── components/\n│   │   ├── common/             # Reusable components (Button, Card, Header)\n│   │   └── ...                 # Feature-specific components\n│   ├── navigation/\n│   │   └── AppNavigator.js       # Navigation logic (Stack/Tabs)\n│   ├── screens/\n│   │   ├── auth/\n│   │   │   └── SplashScreen.js   # Logic to hide native splash screen\n│   │   └── main/\n│   │       ├── HomeScreen.js\n│   │       └── SettingsScreen.js\n│   ├── styles/\n│   │   ├── colors.js           # Centralized color palette\n│   │   └── typography.js       # Centralized font styles\n│   └── utils/\n│       └── helpers.js          # Utility functions\n└── App.js\n```\n\n\n## Setup and Installation\n\n### Prerequisites\n\n-   [Node.js](https://nodejs.org/) (LTS version recommended)\n-   [JDK (Java Development Kit)](https://www.oracle.com/java/technologies/downloads/) (Version 17 recommended)\n-   [Android Studio](https://developer.android.com/studio) (for Android SDK and emulator)\n-   React Native development environment. Follow the official guide for [setting up the development environment](https://reactnative.dev/docs/environment-setup).\n\n### Installation Steps\n\n1.  **Clone the repository:**\n    ```bash\n    git clone https://github.com/namanabbad02/JobsFeed.git\n    ```\n\n2.  **Navigate to the project directory:**\n    ```bash\n    cd src\n    ```\n\n3.  **Install dependencies:**\n    ```bash\n    npm install\n    ```\n\n4.  **iOS Setup:**\n    ```bash\n    cd ios \u0026\u0026 pod install\n    ```\n\n5.  **Android Setup (Crucial Step):**\n    Create a file named `local.properties` inside the `android` folder with the following content, pointing to your Android SDK location:\n    ```properties\n    # For Windows (use double backslashes)\n    sdk.dir = C:\\\\Users\\\\YOUR_USERNAME\\\\AppData\\\\Local\\\\Android\\\\Sdk\n\n    # For macOS/Linux\n    # sdk.dir = /Users/YOUR_USERNAME/Library/Android/sdk\n    ```\n\n## Available Scripts\n\n### `npm start`\n\nRuns the Metro bundler, which serves the JavaScript bundle to your app.\n\n### `npx react-native run-android`\n\nBuilds the app and installs it on a connected Android emulator or physical device.\n\n### `npx react-native run-ios`\n\nBuilds the app and installs it on a connected iOS simulator or physical device (macOS only).\n\n## Generating a Release APK\n\nTo generate a shareable, optimized APK file for Android:\n\n1.  Navigate to the `android` directory:\n    ```bash\n    cd android\n    ```\n\n2.  Run the `assembleRelease` command:\n    ```bash\n    # For Windows\n    gradlew.bat assembleRelease\n\n    # For macOS/Linux\n    ./gradlew assembleRelease\n    ```\n\nThe generated APK files (e.g., `app-arm64-v8a-release.apk`) will be available in `android/app/build/outputs/apk/release/`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamanabbad02%2Fjobsfeed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnamanabbad02%2Fjobsfeed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamanabbad02%2Fjobsfeed/lists"}