Skip to content

Commit

Permalink
完成 gradle plugin task 分析
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyi54 committed May 26, 2019
1 parent 9fc989c commit 0f347d5
Show file tree
Hide file tree
Showing 11 changed files with 679 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#### Gradle 篇 -- 从使用到深入理解
* [Gradle 的基本使用 (已更新)](./gradle/gradle的基本使用.md)
* [Android Gradle Plugin 源码分析 (已更新)](./gradle/android_gradle_plugin-主要流程分析.md)
* Android Gradle Plugin 主要 Task 分析
* [Android Gradle Plugin 主要 Task 分析 (已更新)](./gradle/android_gradle_plugin-主要task分析.md)
* Gradle 源码分析
* Groovy 使用及源码分析
#### 常用技术篇 -- 开发进阶必备
Expand Down
16 changes: 16 additions & 0 deletions gradle/EasyGradle/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@ android {
targetCompatibility 1.8
}

// splits {
//
// // Configures multiple APKs based on screen density.
// density {
//
// // Configures multiple APKs based on screen density.
// enable true
//
// // Specifies a list of screen densities Gradle should not create multiple APKs for.
// exclude "ldpi", "xxhdpi", "xxxhdpi"
//
// // Specifies a list of compatible screen size settings for the manifest.
// compatibleScreens 'small', 'normal', 'large', 'xlarge'
// }
// }

flavorDimensions "size", "color"

productFlavors {
Expand Down
662 changes: 662 additions & 0 deletions gradle/android_gradle_plugin-主要task分析.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0f347d5

Please sign in to comment.