Flippio is an Electron-based application designed to help developers inspect and modify database files on iOS and Android devices. It provides a streamlined interface for connecting to devices, browsing applications, and exploring their databases.
- 📱 Connect to iOS simulators and Android devices
- 📦 Browse installed applications on connected devices
- 🗄️ Explore database files (.db, .sqlite, .sqlite3)
- 📋 View and edit database table contents
- 🔄 Push changes back to device
- 🌓 Light and dark theme support
Download the latest version from the Releases page.
# Clone the repository
git clone https://github.com/groot007/flippio.git
cd flippio
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for your platform
npm run build:mac # For macOS
npm run build:win # For Windows
npm run build:linux # For Linux
- macOS with Xcode installed
- iOS Simulator running
xcrun
command line tools
- Android SDK installed
adb
in your PATH- Android device with USB debugging enabled or emulator running
- Connect Device: Start Flippio and select your connected device
- Select Application: Choose an app from the installed applications list
- Explore Databases: Browse available database files for the selected app
- Inspect & Edit: View table structure and edit data as needed
- Save Changes: Push changes back to the device when finished
- Ensure USB debugging is enabled on your device
- Check if your device is authorized (accept the USB debugging prompt)
- Verify that
adb devices
shows your device in a terminal
- Make sure a simulator is running
- Verify that
xcrun simctl list devices | grep Booted
shows devices in a terminal
- For Android, ensure the app has debugging enabled
- Some system apps or apps with special protections may not allow database modifications
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.