Skip to content

Troubleshooting

Common Build Problems

  1. Build failed due to Java heap space memory:

    Set org.gradle.jvmargs=-Xmx2048m in a gradle.properties.

    If it still fails, you can further increase the memory.

  2. More than one file was found with OS independent path mozilla/public-suffix-list.txt:

    Add this line to the packagingOptions in the build.gradle of you app:

    packagingOptions { exclude 'mozilla/public-suffix-list.txt' }