Files
neomovies-mobile/android/gradle.properties
factory-droid[bot] 2f191dd302 fix(build): resolve Gradle and manifest issues for TorrentEngine
- Remove deprecated android.enableBuildCache from gradle.properties
- Downgrade Kotlin from 2.1.0 to 1.9.24 for Room compatibility
- Add tools namespace to AndroidManifest.xml
- Restore LibTorrent4j to 2.1.0-28 (verified available version)

Known issue: TorrentEngine.kt needs API updates for LibTorrent4j 2.1.x
See compilation errors related to SessionParams, popAlerts, TorrentInfo constructor
2025-10-02 12:27:20 +00:00

21 lines
649 B
Properties

# Gradle JVM settings - optimized for limited RAM
org.gradle.jvmargs=-Xmx2G -XX:MaxMetaspaceSize=1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configureondemand=true
# Android settings
android.useAndroidX=true
android.enableJetifier=true
android.enableR8.fullMode=false
# Kotlin settings
kotlin.daemon.jvmargs=-Xmx1G -XX:MaxMetaspaceSize=512m
kotlin.incremental=true
kotlin.incremental.usePreciseJavaTracking=true
# Build optimization
# android.enableBuildCache=true # Deprecated in AGP 7.0+, use org.gradle.caching instead
org.gradle.vfs.watch=false