Buildconfig using method of Gradle _gradle

Source: Internet
Author: User

In the previous article, we introduced code compilation with Productflavor or BuildType, which is very powerful, but if we just have some field constants that are not the same, then it's overkill to use these methods, and then we use another simple method, That is, configure Buildconfig.

The following way,

Buildtypes {release
        {
            Buildconfigfield "String", "bugly_app_id", "\" xxxxxxxxx\ "    
            Buildconfigfield" Boolean "," Log_debug "," false "
            Buildconfigfield" boolean "," Log_offline "," false "
            Buildconfigfield" boolean " , "Enable_dump_oom", "false"
            signingconfig signingconfigs.release
        }

        Debug {
            Buildconfigfield String "," bugly_app_id "," \ "xxxxxxxxxx\" "
            Buildconfigfield" boolean "," Log_debug "," true "
            Buildconfigfield "Boolean", "Log_offline", "false"
            Buildconfigfield "boolean", "Enable_dump_oom", "true"
            Versionnamesuffix ". Debug"
            signingconfig signingconfigs.release
        }
}

In this way, we use the use of buildconfig.bugly_app_id directly to refer to the relevant values, we can do with the version is different and the correlation value is different.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.