Build Type | Status | Download |
---|---|---|
π Debug APK | π± Download Debug APK | |
π Release APK | π± Download Release APK |
Note: Click on the download links above, then click on the latest successful workflow run, and download the APK from the "Artifacts" section.
https://github.com/spkdroid/Lemonade/raw/master/screenshots/Demo.mp4
Experience the smooth, intuitive interface of our beverage ordering app
A modern, professional beverage ordering mobile application built with React Native. Chill N Drink offers a seamless experience for browsing and ordering refreshing drinks with a beautiful, intuitive interface inspired by leading food delivery platforms.
Chill N Drink is a premium beverage ordering platform that brings the best drinks directly to your doorstep. Our app features a curated selection of:
- π Fresh Lemonades - Classic and flavored varieties
- π₯€ Smoothies - Nutritious fruit and vegetable blends
- π§ Iced Teas - Refreshing herbal and traditional teas
- β Hot Beverages - Specialty coffee and warm drinks
- πΏ Snacks - Perfect pairings for your drinks
- Modern UI/UX - Professional design inspired by DoorDash and Uber Eats
- Real-time Menu - Dynamic menu loading with categories and search
- Smart Cart - Persistent cart with quantity management
- Secure Checkout - Integrated payment processing and order validation
- Portrait Optimized - Locked orientation for optimal mobile experience
- Offline Support - Cached menu data for seamless browsing
Chill N Drink follows Clean Architecture principles with a clear separation of concerns:
src/
βββ π± presentation/ # UI Layer
β βββ screens/ # Screen components
β βββ components/ # Reusable UI components
β βββ viewModels/ # MVVM presentation logic
β βββ navigation/ # App navigation setup
βββ π’ domain/ # Business Logic Layer
β βββ models/ # Data models
β βββ usecases/ # Business use cases
β βββ repositories/ # Repository interfaces
βββ ποΈ data/ # Data Layer
β βββ repositories/ # Repository implementations
β βββ datasources/ # API and local data sources
βββ π§ infrastructure/ # Infrastructure Layer
β βββ storage/ # Local storage services
βββ π οΈ utils/ # Shared utilities
- MVVM (Model-View-ViewModel) - Clean separation of UI and business logic
- Repository Pattern - Abstracted data access layer
- Use Case Pattern - Encapsulated business operations
- Dependency Injection - Loose coupling and testability
Chill N Drink integrates with robust backend services to provide real-time functionality:
- Endpoint:
https://www.spkdroid.com/orange/menu.php
- Features: Dynamic menu loading, category management, item details
- Caching: Local storage with automatic refresh
- Endpoint:
https://www.spkdroid.com/orange/checkout.php
- Features: Order processing, payment validation, order confirmation
- Security: Encrypted payment data, secure order transmission
- RESTful architecture
- JSON response format
- Error handling and validation
- Rate limiting and security
Here are a few screenshots showcasing key features of the app:
Home Screen | Menu List | Add to Cart |
---|---|---|
![]() |
![]() |
![]() |
Add to Cart | Checkout | Order Confirmation |
---|---|---|
![]() |
![]() |
![]() |
Checkout Success |
---|
![]() |
Before running Chill N Drink, ensure you have completed the React Native Environment Setup.
Required Tools:
- Node.js (16.0 or higher)
- React Native CLI
- Android Studio (for Android development)
- Xcode (for iOS development, macOS only)
-
Clone the repository
git clone https://github.com/spkdroid/Lemonade cd Lemonade
-
Install dependencies
npm install
-
iOS Setup (macOS only)
bundle install bundle exec pod install --project-directory=ios
-
Start Metro bundler
npm start
-
Run the app
# Android npm run android # iOS npm run ios
Chill N Drink includes comprehensive build automation:
# Android Release APK
./build.sh android release
# iOS Release Archive
./build.sh ios release
# Both platforms
./build.sh both release
# Quick Android debug
./dev.sh android
# Quick iOS debug
./dev.sh ios
# Start Metro only
./dev.sh metro
- Android Debug:
android/app/build/outputs/apk/debug/app-debug.apk
- Android Release:
android/app/build/outputs/apk/release/app-release.apk
- iOS Archive:
ios/build/ChillNDrinkApp.xcarchive
This project uses ESLint and Prettier for consistent code formatting:
# Lint code
npm run lint
# Format code
npm run format
# Run tests
npm test
# Run tests with coverage
npm run test:coverage
We welcome contributions to Chill N Drink! Please read our contributing guidelines before submitting pull requests.
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
Metro bundler not starting:
npx react-native start --reset-cache
Android build errors:
cd android && ./gradlew clean && cd ..
npm run android
iOS build errors:
cd ios && rm -rf build && cd ..
bundle exec pod install --project-directory=ios
npm run ios
For more issues, see the React Native Troubleshooting Guide.
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 Chill N Drink
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Ramkumar Velmurugan
- π§ Email: [email protected]
- π Website: https://www.spkdroid.com
This project was developed with the assistance of advanced AI tools and technologies:
-
GitHub Copilot π€
- Intelligent code completion and suggestions
- Automated code generation and refactoring
- Real-time development assistance and best practices
-
ChatGPT π¬
- Architecture planning and design patterns
- Code review and optimization suggestions
- Documentation and technical writing assistance
All contributions from AI tools were reviewed, verified, and curated by the author.
- React Native Community - For the amazing framework and ecosystem
- Open Source Contributors - For the libraries and tools that make this possible
- Design Inspiration - DoorDash, Uber Eats, and other leading mobile platforms