Gradle is the default build system in Android Studio. Gradle uses Groovy as the main scripting language. The build.gradle file of our app project and the build.gradle file in the APP Moudle is a Groovy class. Next, let me introduce the basic functions and advanced techniques of Gradle. Basic Usage
The code above is the build.gradle file in the default module created by the studio when the Android project is just built. The Gradle version used is 2.3.3. Most of the Gradle function configurations are also implemented in this file. apply plugin:: is used to specify which plugin to use. Common values in development are 'com.android.application': Android APP plug-in (the packaged file is .apk file) 'com.android.library': Android library plug-in (the packaged file is .aar file) 'java': ordinary java plug-in (packaged as a .jar file) android{} is used to specify the relevant properties of the Android packaging plug-in, which contains the following nodes compileSdkVersion(apiLevel): Set the Android version used for compilation buildToolsVersion(buildToolsVersionName): Set the version of the build tool used when compiling defaultConfig: Set some default properties. The available properties are the sum of buildTypes and productFlavors. (productFlavors is not included in the default file and will be introduced later.) buildTypes: Configure the build type, which can generate different types of packages. The most common ones are debug and release. Of course, you can add N more. productFlavors: Configure different styles of APP. On the basis of buildTypes, each type of APP can have different styles. Therefore, the number of APKs that can be printed is buildTypes multiplied by productFlavors. The variable name of the build is productFlavors+buildTypes. Dependencies: Configure dependencies. This is definitely the most convenient part after switching from Eclipse to Studio. Various external dependencies can be handled with one line of code without manually downloading dependency packages. Here compile fileTree(dir: 'libs', include: ['*.jar']) means to depend on all jar files in the libs directory. Advanced Usage Well, the basic configuration above is just a simple usage of Gradle. In fact, we can use Gradle to do a lot of tricks. manifest dynamic configuration Many third-party SDKs require you to configure some key information in AndroidManifest.xml. Take Umeng Push as an example:
But the keys of your different test packages and official packages are different, so you can modify them like this:
Then add different information to each version in productFlavors, so that the appkey used by different packages you type will be different.
Not only can these custom metadata be dynamically configured, but also the android:icon, android:label and other tags can be modified, so that different packages can have different icons, which is convenient for distinguishing them. Moudle dynamic dependency In a componentized app, we may need to depend on different components in the test package and the production package. For example, the test environment needs a debug module, but the production environment does not. Suppose productFlavors is as follows, and the debug module name is module-test.
Then you can depend on the test module in dependencies:
The same buildTypes are also applicable, both can be used together or separately:
Reading variables in code The above functions are all configured separately by gradle, but we often have different requirements for different build packages that need to be reflected in the code: log printing, Toast, etc. Although the BuildConfig.DEBUG field can be used for judgment, we can use buildConfigField to pass custom values to the code. For example, different build packages require different API addresses starting with Host, different https certificate paths, etc. The usage is:
for example:
The above is added to defaultConfig, and adding it to buildTypes or productFlavors will result in different values in different build versions. If you configure different applicationIds, you can install different build versions of apps on the same phone at the same time.
After the above introduction, you may find that buildTypes and productFlavors are very similar in definition, but the difference is that changing buildType will not change the application code, they just handle different things, you can get more technical details through buildType (for example: build optimization, log level, etc.), but the content of the app will not change, on the contrary, using productFlavor configuration can change the content of the app (ps: the content can be imagined as a package, buildType cannot change the applicationId). Gradle tasks Gradle tasks are suitable for completing some tedious and error-prone repetitive manual work, such as batch modification, copying, and renaming files. For example, the applicationVariants.all task can set various properties for each build version, such as changing the name of the APK generated by each build version:
By default, gradle will match and generate a build version of each productFlavors*buildTypes. If you want to skip some of them, you can do this:
|
<<: Teach you step by step to publish your own CocoaPods open source library
>>: Swift Practice: Using CoreData to Complete an Address Book Storage
Tencent has officially launched WeChat version 8....
If short videos have become a red ocean, do mediu...
At any given moment in any business, there are on...
In the process of Android UI development, we ofte...
More and more companies are beginning to realize ...
[[212086]] What has always puzzled me is why fore...
Baidu has been overhauling its business promotion...
How does Xiaohongshu increase followers and make ...
Review of the Phenomenon-level Screen Sweeping Ju...
There are only a handful of companies that know h...
There are many indicators for judging the popular...
In the 21st century, the era of mobile Internet h...
Himalaya's premium audiobook "My Life in ...
In fact, the Tik Tok cover is very helpful in inc...
2022 marks the 100th anniversary of the founding ...