Summary of common configurations of Android gradle

Summary of common configurations of Android gradle

This article summarizes the common configurations in the build.gradle file in Android development. Some configurations are used in specific scenarios, and some are added to solve some problems. Therefore, by default, the configuration in the default build.gradle file generated when creating a new project in the Android Studio tool is used. When you encounter problems, add some configurations.

  1. // apply plugin: 'com.android.library' // Library configuration apply plugin: 'com.android.application' // Application configuration repositories { // This needs to be configured when importing AAR files. AAR files are placed in the libs directory
  2. flatDir {
  3. dirs 'libs'  
  4. }
  5. }
  6.  
  7. android {
  8. compileSdkVersion 25 // The version of the Android compilation SDK, that is, the android.jar file of 4.0SDK, 5.0SDK, etc.
  9. buildToolsVersion "25.0.2" // Use the version of the compilation tool in the SDK
  10. useLibrary "org.apache.http.legacy" // Use Apache's httpClient package in 6.0 because Google removed this http request library in 6.0
  11.  
  12. defaultConfig {
  13. applicationId "com.xxx" // The package name of the application can be referenced in AndroidMainfest.xml using ${applicationId}
  14. minSdkVersion 15 // minimum compatible version
  15. targetSdkVersion 25 // target version
  16. versionCode 1 // Application version number
  17. versionName SDK_VERSION // Application version name
  18. multiDexEnabled true // Enable multi-dex if the number of code methods in the app exceeds 65535
  19.  
  20. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" // android unit test configuration
  21.  
  22. }
  23.  
  24. sourceSets { // Specify the path of code and resources. For details, please refer to http://google.github.io/android-gradle-dsl/2.3/com.android.build.gradle.api.AndroidSourceSet.html
  25. main {
  26. manifest.srcFile 'AndroidManifest.xml' //Specify the path to manifest.xml
  27. java.srcDirs = [ 'src' ] // java file path, one level above the package name, multiple directories are separated by commas, such as [ 'src' , 'core' ]
  28. resources.srcDirs = [ 'src' ] // All directories of resource resources. Note that this refers to some resources contained in the jar file, such as properties files, rather than the res resources in the APK
  29. aidl.srcDirs = [ 'src' ] // directory of aidl files
  30. renderscript.srcDirs = [ 'src' ] // path to the renderscript file
  31. res.srcDirs = [ 'res' ] // Resource path in android APK
  32. assets.srcDirs = [ 'assets' ] // asset directory in android app
  33. jniLibs.srcDirs = [ 'libs' ] // Path to the SO library
  34. }
  35. }
  36.  
  37. lintOptions {
  38. checkReleaseBuilds false // Disable lint check when compiling release
  39. abortOnError false // Error reporting will not stop packaging unless it is very serious and affects
  40. disable 'MissingTranslation' , 'ExtraTranslation' // Disable some options in lint check
  41. }
  42.  
  43. dexOptions {
  44. javaMaxHeapSize "4g" // Set the maximum heap memory size when compiling project code, otherwise the compilation memory will overflow when the project is too large
  45. }
  46.  
  47. compileOptions { // For details, please refer to http://google.github.io/android-gradle-dsl/2.3/com.android.build.gradle.internal.CompileOptions.html
  48. sourceCompatibility JavaVersion.VERSION_1_7 // Set the version of the code compilation. Generally, this is configured when using JDK1.8 to make the compiled jar package more universal for others to use
  49. targetCompatibility JavaVersion.VERSION_1_7
  50. }
  51.  
  52. packagingOptions {
  53. exclude 'META-INF/DEPENDENCIES.txt' // Exclude the declaration files in these third-party jars, otherwise it is easy to cause errors during compilation
  54. exclude 'META-INF/LICENSE.txt'  
  55. exclude 'META-INF/NOTICE.txt'  
  56. exclude 'META-INF/NOTICE'  
  57. exclude 'META-INF/LICENSE'  
  58. exclude 'META-INF/DEPENDENCIES'  
  59. exclude 'META-INF/notice.txt'  
  60. exclude 'META-INF/license.txt'  
  61. exclude 'META-INF/dependencies.txt'  
  62. exclude 'META-INF/LGPL2.1'  
  63. }
  64.  
  65. buildTypes {
  66. debug { storeFile file( "debug.keystore" ) ​​// relative path of signature file
  67. storePassword "android" // Signature password
  68. keyAlias ​​"androiddebugkey" // alias
  69. keyPassword "android" // Alias ​​password
  70.  
  71. buildConfigField "boolean" , "FLAG_DEBUG" , "true" // Automatically generate public in the class of BuildConfig.   static final boolean FLAG_DEBUG = true ; code
  72. buildConfigField "String" , "API_VERSION" , "\"1\""  
  73.             
  74. ndk {
  75. abiFilters "armeabi" , "armeabi-v7a" // Only keep SO libraries of these CPU architectures, which require a higher version of gradle to support
  76. }
  77. // jniDebuggable true // Enable JNI debug. This option is rarely used and is not recommended. It will affect the debugging speed of Java code.
  78. }
  79.  
  80. release {
  81. buildConfigField "boolean" , "FLAG_DEBUG" , "false"  
  82. buildConfigField "String" , "API_VERSION" , "\"1\""  
  83. minifyEnabled true // Remove useless content from the code when obfuscating
  84. shrinkResources true // Remove useless resources during obfuscation, for the contents in the res/directory, do not compress the size of the image
  85. proguardFiles getDefaultProguardFile( 'proguard-android.txt' ), 'proguard-rules.pro' // Configure obfuscation file
  86.              
  87. ndk {
  88. abiFilters "armeabi" , "armeabi-v7a" // Only keep SO libraries of these CPU architectures, which require a higher version of gradle to support
  89. }
  90. }
  91. }
  92. }
  93.  
  94. dependencies { compile fileTree(include: [ '*.jar' ], dir: 'libs' ) // Import all jar packages in the libs directory
  95. androidTestCompile( 'com.android.support.test.espresso:espresso-core:2.2.2' , { // Exclude modules in group , note group and module names com.android.support:support-annotations
  96. exclude group : 'com.android.support' , module: 'support-annotations'  
  97. })
  98. compile 'com.android.support:appcompat-v7:25.1.0' // Use Google's appcompat-v7 package
  99. testCompile 'junit:junit:4.12' // Import junit unit test
  100.  
  101. compile 'com.android.support:multidex:1.0.0' // Add loading of multi-dex library
  102. compile files( 'libs/gson.jar' ) // Reference the gson.jar package in the libs directory
  103. compile( name : 'HMS-SDK-2.4.0.300' , ext: 'aar' ) // Import the HMS-SDK-2.4.0.300.aar file. You also need to refer to the configuration in the file header.
  104. compile( 'com.facebook.fresco:fresco:1.0.0' ) { exclude module: 'support-v4' } // Import the fresco library, but do not use the support-v4 library referenced in it, otherwise it will lead to repeated introduction and compilation error duplicate
  105. provided fileTree(dir: 'compilelibs' , include: [ '*.jar' ]) // Introduce the jar files in the compilelibs directory to participate in the compilation, but do not include the code of these packages in the APK, jar or AAR. }// Use the jar task to generate the jar file, relying on the assembleRelease tasktask buildJar(type: Jar, dependsOn: [ 'assembleRelease' ]) {
  106. destinationDir = file( 'build/outputs/jar/' )
  107. appendix = ""  
  108. baseName = ""  
  109. version = SDK_VERSION // manifest information
  110. def map = [ 'Version' : SDK_VERSION, 'Gradle' : project.gradle.gradleVersion, 'Vendor' : 'szcomtop.com' , 'Date' : new Date ().getDateTimeString()
  111. ]
  112. manifest.attributes(map)// from ( 'build/intermediates/classes/release/' )
  113. from (project.zipTree( 'build/intermediates/transforms/proguard/release/jars/3/3/main.jar' ))
  114. exclude( '**/BuildConfig.class' )
  115. exclude( '**/BuildConfig\$*.class' )
  116. exclude( '**/R.class' )
  117. exclude( '**/R\$*.class' )
  118. include( '**/*.class' )
  119. }// Use the Copy task to copy content task copySDK(type: Copy, dependsOn: [ 'buildJar' ]) {
  120. from ( 'build/outputs/jar' )
  121. into ( '../app/libs/' )
  122. include( "*.jar" )
  123. }

How to use

We will continue to update, and with the upgrade of Android's gradle tool, some configurations may change. For example, ndk.abiFilters can only be used in a higher version of the gradle tool. Upgrading the gradle version may also cause compilation failures and other problems, which take a long time to solve, so please be cautious.

Regarding the usage of some configurations, one example is given below, and the others are similar.

For example, how do you know there is a compileOptions configuration? What settings can be set under this configuration? How do you use these settings? What values ​​can be given?

  1. compileOptions {
  2.  
  3. sourceCompatibility JavaVersion.VERSION_1_7 // Set the version of the code compilation. Generally, this is configured when using JDK1.8 to make the compiled jar package more universal for others to use
  4.  
  5. targetCompatibility JavaVersion.VERSION_1_7
  6.  
  7. }

Start from the official website

Click here for the usage documentation of the gradle tool officially defined by android, and click here for the official gradle documentation.

There is a DSL in the link. What is this DSL? DSL is the abbreviation of Gradle Build Language. Haha, just kidding, it is the abbreviation of Domain Specific Language, and Domain can be understood as Project.

I’m getting off topic, let’s move on.

compileOptions Example

Open the official documentation page of the Android Gradle tool and you will see the version selection page as shown below:

This version corresponds to the gradle version in the build.gradle file in the root directory of the Android Studio project. At the same time, it is found that this version corresponds to the version of Android Studio. As shown in the following figure:

Click the link of the current 2.2 version to enter the following interface, as shown in the figure below, find compileOptions on the left and click this link (to get familiar with this official document, you can start from the Home item on the left):

Click the link marked with a red box in the above picture, and you will be redirected to the configuration instructions as shown in the following figure. This jump method is a bit similar to the Java API, but you should see the details this time, but you don’t:

If you need to view further details, you can only click on the link marked with a red frame in the above picture. After entering, you will find familiar content, as shown in the following figure:

Do you have a long-lost feeling that you are finally about to see the truth? There is only one step left. The available options and their meanings in compileOptions have been clearly written above. Clicking sourceCompatibility will jump to the content shown in the following figure:

From the above, you can see what values ​​sourceCompatibility can take, and finally found the result.

OK, that’s all for the compileOptions example. The same method can be used for other configurations. The official Gradle documentation is similar. The rest is just a matter of familiarity.

<<:  Android Studio debugging tips you don't know

>>:  Use Jenkins to build iOS/Android continuous integration packaging platform

Recommend

A guide to placing pangolin-effective advertising on Toutiao today!

This article shares with you the latest guide to ...

How many fan promotion techniques do you know?

Many businesses feel confused about Weibo promoti...

Samsung imitates Apple to a new level: copying a Steve Jobs

In the confrontation with Apple, Samsung has alwa...

SEO Consulting Services

With the rapid development of the Internet, onlin...

Analysis of Apple's Marketing Strategy

Since launching the industry-revolutionary iPhone...

CTO Training Camp Huang Quanneng: Concerto composed by products and technology

Huang Quanneng, technical director of Changba, sh...

How to do KOL marketing promotion? 4000 words of dry goods presented

With the rise of short video platforms such as Ti...

Which outsourcing company is good at Baidu bidding hosting?

Which outsourcing company is good at Baidu biddin...

Short video overseas promotion strategy

On April 16, Sensor Tower released its mobile app...

How to promote and market APP? What are the common methods?

2019 marks the 11th anniversary of the App Store ...

Why do operators need to do data analysis?

1. Operations generate data, and data supports op...