Coder Social home page Coder Social logo

fgradle's Introduction

fgradle

Improving Gradle build time in a default Flutter project.

Step 1

Change default minSdkVersion at file android/app/build.gradle from 16 to 21

Step 2

Change default Gradle properties at file android/gradle.properties.
The value of 4096 will depends on your RAM. You can change to 3096 or 2048 for lower RAM.
The value 512m also depends on your RAM. You can change to 1024m if you have enough RAM to spare.

Here is the copy paste version:

#Enable daemon
org.gradle.daemon=true

# Try and findout the best heap size for your project build.
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# Modularise your project and enable parallel build
org.gradle.parallel=true

# Enable configure on demand.
org.gradle.configureondemand=true

android.useAndroidX=true
android.enableJetifier=true

Step 3

Change the default distributionUrl at file android/gradle/wrapper/gradle-wrapper.properties to the latest version.
You can check the latest gradle version at this link.

Your build will be a lot slower after you change distributionUrl to latest version, because it needs to download the latest gradle file. But it will be faster at your next build.

You also need to change gradle dependencies at file android/gradle.build to the latest Android Gradle Plugin version.
You can check the latest Android Gradle Plugin version here and here.

See current release.

Step 4

To easily monitor the process of gradle build and detect when it's stuck. Always use -v when you build from command line.

$ flutter run -v
$ flutter run --profile -v
$ flutter run --release -v
$ flutter build apk --split-per-abi -v

fgradle's People

Contributors

salkuadrat avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.