{"id":31750149,"url":"https://github.com/janpul/pairup-tinder-app","last_synced_at":"2026-05-16T00:32:30.772Z","repository":{"id":313474222,"uuid":"1051549814","full_name":"janpul/pairup-tinder-app","owner":"janpul","description":"PairUp is a click-based Android app that helps users connect with others based on shared interests.","archived":false,"fork":false,"pushed_at":"2025-09-06T08:58:06.000Z","size":1273,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-06T10:21:17.817Z","etag":null,"topics":["android-development","android-studio","kotlin-android","tinder-clone"],"latest_commit_sha":null,"homepage":"https://jpault.vercel.app","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/janpul.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":"2025-09-06T08:18:41.000Z","updated_at":"2025-09-06T08:58:08.000Z","dependencies_parsed_at":"2025-09-06T10:31:44.938Z","dependency_job_id":null,"html_url":"https://github.com/janpul/pairup-tinder-app","commit_stats":null,"previous_names":["janpul/pairup-tinder-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/janpul/pairup-tinder-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janpul%2Fpairup-tinder-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janpul%2Fpairup-tinder-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janpul%2Fpairup-tinder-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janpul%2Fpairup-tinder-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/janpul","download_url":"https://codeload.github.com/janpul/pairup-tinder-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janpul%2Fpairup-tinder-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001655,"owners_count":26083147,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-development","android-studio","kotlin-android","tinder-clone"],"created_at":"2025-10-09T15:26:45.874Z","updated_at":"2025-10-09T15:26:49.006Z","avatar_url":"https://github.com/janpul.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PairUp\n\nPairUp is a Tinder-like Android application designed to help users connect and pair up with others based on shared interests. The app features a swipe-based interface, real-time updates, and seamless integration with Firebase for authentication and data storage.\n\n## Features\n\n- **Swipe Cards:** Users can swipe left or right to like or pass on other users.\n- **Real-Time Updates:** User profiles and matches update in real-time using Firebase Realtime Database.\n- **Authentication:** Secure sign-in and sign-up with Firebase Authentication.\n- **Profile Management:** Users can create and edit their profiles, including uploading photos.\n- **Chat:** Matched users can chat with each other in real-time.\n- **Consistent UI:** The app uses consistent modal components and CSS classes for a unified user experience.\n- **Live Refresh:** Project lists and matches update dynamically without requiring a full page reload.\n\n## Firebase Integration\n\nPairUp uses Firebase for:\n\n- **Authentication:** Email/password and social login support.\n- **Realtime Database:** Storing user profiles, matches, and chat messages.\n- **Storage:** Uploading and retrieving user profile images.\n\n### Firebase Setup\n\n1. **Create a Firebase Project:**\n   - Go to [Firebase Console](https://console.firebase.google.com/).\n   - Click \"Add project\" and follow the setup steps.\n\n2. **Register your Android app:**\n   - Add your app’s package name.\n   - Download the `google-services.json` file and place it in your app’s `/app` directory.\n\n3. **Add Firebase SDK to your project:**\n   - In your `build.gradle` files, add the required Firebase dependencies:\n     ```gradle\n     // Project-level build.gradle\n     classpath 'com.google.gms:google-services:4.3.15'\n     ```\n     ```gradle\n     // App-level build.gradle\n     apply plugin: 'com.google.gms.google-services'\n\n     implementation 'com.google.firebase:firebase-auth:22.3.0'\n     implementation 'com.google.firebase:firebase-database:20.3.0'\n     implementation 'com.google.firebase:firebase-storage:20.3.0'\n     ```\n\n4. **Sync your project** with Gradle.\n\n5. **Initialize Firebase** in your app’s `Application` or `MainActivity`:\n   ```java\n   import com.google.firebase.FirebaseApp;\n\n   @Override\n   public void onCreate() {\n       super.onCreate();\n       FirebaseApp.initializeApp(this);\n   }\n   ```\n\n## Getting Started\n\n1. **Clone the repository:**\n   ```\n   git clone https://github.com/janpul/pairup-tinder-app.git\n   ```\n\n2. **Open in Android Studio** and let Gradle sync.\n\n3. **Add your `google-services.json`** to the `/app` directory.\n\n4. **Build and run** the app on your device or emulator.\n\n## Project Structure\n\n- `/app/src/main/java/` — Main source code\n- `/app/src/main/res/` — Resources (layouts, drawables, etc.)\n- `/app/build.gradle` — App-level Gradle config\n- `/google-services.json` — Firebase config (not included in repo)\n\n## License\n\nThis project is licensed under the MIT License.\n\n---\n\n**Note:**  \nDo not commit your `google-services.json` or any sensitive keys to the repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanpul%2Fpairup-tinder-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjanpul%2Fpairup-tinder-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanpul%2Fpairup-tinder-app/lists"}