docs/building.md
Simple guide to build Droid-ify from source.
# Clone the repository
git clone https://github.com/Iamlooker/Droid-ify.git
cd Droid-ify
# Build debug APK
./gradlew assembleDebug
# Or build release APK
./gradlew assembleRelease
Output: app/build/outputs/apk/
Droid-ify folder# Install to connected device
./gradlew installDebug
# Or manually install
adb install app/build/outputs/apk/debug/app-debug.apk
Build fails: Try ./gradlew clean --refresh-dependencies
SDK not found: Create local.properties:
sdk.dir=/path/to/your/android/sdk
Device not detected: Enable USB Debugging in Developer Options
For contributing guidelines, see CONTRIBUTING.md