当前位置:   article > 正文

Android Studio中Gradle使用详解_gradle 使用详解

gradle 使用详解

转自:http://www.jianshu.com/p/02cb9a0eb2a0

一)基本配置

  1. build配置

    1. buildscript {
    2. repositories {
    3. jcenter()
    4. }
    5. dependencies {
    6. classpath 'com.android.tools.build:gradle:1.2.3'
    7. }
    8. }

    Android脚本

    apply plugin: 'com.android.application'

    Android配置

    1. android {
    2. compileSdkVersion 22
    3. buildToolsVersion "22.0.1"
    4. }

    项目结构

    1. MyApp
    2. ├── build.gradle
    3. ├── settings.gradle
    4. └── app
    5. ├── build.gradle
    6. ├── build
    7. ├── libs
    8. └── src
    9. └── main
    10. ├── java
    11. │ └── com.package.myapp
    12. └── res
    13. ├── drawable
    14. ├── layout
    15. └── etc.
  2. Gradle Wrapper结构(这些新建项目时都添加给了用户,不需要重新添加)

    1. myapp/
    2. ├── gradlew
    3. ├── gradlew.bat
    4. └── gradle/wrapper/
    5. ├── gradle-wrapper.jar
    6. └── gradle-wrapper.properties

    运行build任务 - 列出所有可用任务

    $ ./gradlew tasks

    生成App-debug.apk任务

    1. $ ./gradlew assembleDebug
    2. # Apk路径: MyApp/app/build/ outputs/apk
  3. 手动导入Eclipse-Android项目(自动导入请连续点“下一步”)
    在项目路径下创建build.gradle文件:

    1. buildscript {
    2. repositories {
    3. jcenter()
    4. }
    5. dependencies {
    6. classpath 'com.android.tools.build:gradle:1.2.3'
    7. }
    8. }
    9. apply plugin: 'com.android.application'
    10. android {
    11. compileSdkVersion 22
    12. buildToolsVersion "22.0.1"
    13. sourceSets {
    14. main {
    15. manifest.srcFile 'AndroidManifest.xml'
    16. java.srcDirs = ['src']
    17. resources.srcDirs = ['src']
    18. aidl.srcDirs = ['src']
    19. renderscript.srcDirs = ['src']
    20. res.srcDirs = ['res']
    21. assets.srcDirs = ['assets']
    22. }
    23. androidTest.setRoot('tests')
    24. }
    25. }
    26. dependencies {
    27. compile fileTree(dir: 'libs', include: ['*.jar'])
    28. }

    PS 也可以复制粘贴Eclipse-Android项目的源代码到Android Studio的项目里

二)自定义配置

  1. Gradle所有文件结构

    1. MyApp
    2. ├── build.gradle
    3. ├── settings.gradle
    4. └── app
    5. └── build.gradle

    settings.gradle

    include ':app'

    MyApp/build.gradle

    1. buildscript {
    2. repositories {
    3. jcenter()
    4. }
    5. dependencies {
    6. classpath 'com.android.tools.build:gradle:1.2.3'
    7. }
    8. }
    9. allprojects {
    10. repositories {
    11. jcenter()
    12. }
    13. }

    MyApp/app/build.gradle

    1. apply plugin: 'com.android.application'
    2. android {
    3. compileSdkVersion 22
    4. buildToolsVersion "22.0.1"
    5. defaultConfig {
    6. applicationId "com.gradleforandroid.gettingstarted"
    7. minSdkVersion 14
    8. targetSdkVersion 22
    9. versionCode 1
    10. versionName "1.0"
    11. }
    12. buildTypes {
    13. release {
    14. minifyEnabled false
    15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    16. }
    17. }
    18. }
    19. dependencies {
    20. compile fileTree(dir: 'libs', include: ['*.jar'])
    21. compile 'com.android.support:appcompat-v7:22.2.0'
    22. }
  2. 基础任务

    1. $ ./gradlew assemble -为所有构建类型创建apk
    2. $ ./gradlew check 运行所有的检查,比如说Android Lint,如果发现问题可终止任务
    3. $ ./gradlew build 运行以上两个任务
    4. $ ./gradlew clean -清除生成的apk
    5. ++++
    6. $ ./gradlew connectedCheck - 在设备上运行测试
    7. $ ./gradlew deviceCheck - 远程设备运行测试
    8. $ ./gradlew installDebug/installRelease - 在设备商安装指定版本
    9. $ ./gradlew uninstall - 卸载

  3. Build Types不同版本的参数设置 - BuildConfig/Resource Value

    1. android {
    2. buildTypes {
    3. debug {
    4. buildConfigField "String", "API_URL","\"http://test.example.com/api\""
    5. buildConfigField "boolean", "LOG_HTTP_CALLS", "true"
    6. resValue "string", "app_name", "Example DEBUG"
    7. }
    8. release {
    9. buildConfigField "String", "API_URL", "\"http://example.com/api\""
    10. buildConfigField "boolean", "LOG_HTTP_CALLS", "false"
    11. resValue "string", "app_name", "Example"
    12. }
    13. }
    14. }
  4. 全局设置(项目根目录的build.gradle)

    1. allprojects {
    2. apply plugin: 'com.android.application'
    3. android {
    4. compileSdkVersion 22
    5. buildToolsVersion "22.0.1"
    6. }
    7. }

    设置全局参数

    1. ext {
    2. compileSdkVersion = 22
    3. buildToolsVersion = "22.0.1"
    4. }

    在MyApp/app/build.gradle里面使用参数

    1. android {
    2. compileSdkVersion rootProject.ext.compileSdkVersion
    3. buildToolsVersion rootProject.ext.buildToolsVersion
    4. }
  5. 默认任务(MyApp/build.gradle)

    defaultTasks 'clean', 'assembleDebug'

三) 依赖管理

  1. 仓库
    预设配置仓库

    1. repositories {
    2. mavenCentral()
    3. jcenter()
    4. mavenLocal()
    5. }

    远程仓库

    1. repositories {
    2. maven {
    3. url "http://repo.acmecorp.com/maven2"
    4. credentials {
    5. username 'user'
    6. password 'secretpassword'
    7. }
    8. }
    9. ivy {
    10. url "http://repo.acmecorp.com/repo"
    11. }
    12. }

    本地仓库

    1. repositories {
    2. maven {
    3. url "../repo"
    4. }
    5. }
  2. 本地依赖
    项目文件依赖

    1. dependencies {
    2. compile fileTree(dir: 'libs', include: ['*.jar'])
    3. }

    原生库结构与配置

    1. # 结构:
    2. app
    3. ├── AndroidManifest.xml
    4. └── jniLibs
    5. ├── armeabi
    6. │ └── nativelib.so
    7. ├── armeabi-v7a
    8. │ └── nativelib.so
    9. ├── mips
    10. │ └── nativelib.so
    11. └── x86
    12. └── nativelib.so
    13. # 配置:
    14. android {
    15. sourceSets.main {
    16. jniLibs.srcDir 'src/main/libs'
    17. }
    18. }

    Libray项目

    1. # 修改Android插件:
    2. apply plugin: 'com.android.library'
    3. # settings.gradle新增libray项目:
    4. include ':app', ':library'
    5. # app内引用library项目:
    6. dependencies {
    7. compile project(':library')
    8. }
  3. 依赖概念

    <待续>
  4. Android Studio内添加依赖


四)构建变体

  • <待续>

五)多模块构建管理

  1. 加速构建
    1. 在gradle.properties里面添加:
    2. org.gradle.parallel=true

六) 测试

  1. 单元测试
    使用JUnit

    1. # 结构:
    2. app
    3. └─── src
    4. ├─── main
    5. │ ├─── java
    6. │ │ └─── com.example.app
    7. │ └───res
    8. └─── test
    9. └─── java
    10. └─── com.example.app
    11. # 依赖:
    12. dependencies {
    13. testCompile 'junit:junit:4.12'
    14. }

    使用Robolectric

    1. # 依赖:
    2. apply plugin: 'org.robolectric'
    3. dependencies {
    4. compile fileTree(dir: 'libs', include: ['*.jar'])
    5. compile 'com.android.support:appcompat-v7:22.2.0'
    6. testCompile 'junit:junit:4.12'
    7. testCompile'org.robolectric:robolectric:3.0'
    8. testCompile'org.robolectric:shadows-support:3.0'
    9. }
    10. # Demo:
    11. @RunWith(RobolectricTestRunner.class)
    12. @Config(manifest = "app/src/main/AndroidManifest.xml", sdk = 18)
    13. public class MainActivityTest {
    14. @Test
    15. public void clickingButtonShouldChangeText() {
    16. AppCompatActivity activity = Robolectric.buildActivity(MainActivity.class).create().get();
    17. Button button = (Button) activity.findViewById(R.id.button);
    18. TextView textView = (TextView) activity.findViewById(R.id.label);
    19. button.performClick();
    20. assertThat(textView.getText().toString(), equalTo(activity.getString(R.string.hello_robolectric)));
    21. }
    22. }
  2. 功能测试
    使用Espresso

    <待续>
  3. 测试覆盖度
    使用Jacoco

    <待续>

七)创建任务与插件

  1. <待续>

八)配置CI

  1. <待续>

九)自定义配置 - 进阶

  1. 缩减apk文件大小
    使用ProGuard
    1. android {
    2. buildTypes {
    3. release {
    4. minifyEnabled true
    5. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    6. }
    7. }
    8. }
    收缩资源文件 - 自动 (<手动待续>)
    1. android {
    2. buildTypes {
    3. release {
    4. minifyEnabled true
    5. shrinkResources true
    6. }
    7. }
    8. }
  2. 加速构建

    1. org.gradle.parallel=true # 并行构建
    2. org.gradle.daemon=true # 开启Gradle守护进程
    3. org.gradle.jvmargs=-Xms256m -Xmx1024m # 配置JVM<参照下图>


    使用Profiling

    <待续>

    使用Jack(Java Android Compiler Kit) and Jill(Jack Intermediate Library Linker)

    <待续>
  3. 忽略Lint

    1. android {
    2. lintOptions {
    3. abortOnError false
    4. }
    5. }
  4. 使用Ant

    <待续>
  5. app打包 - 进阶
    分割apk

    1. android {
    2. splits {
    3. density {
    4. enable true
    5. exclude 'ldpi', 'mdpi'
    6. compatibleScreens 'normal', 'large', 'xlarge'
    7. }
    8. }
    9. }
    10. 生成结果:
    11. app-hdpi-release.apk
    12. app-universal-release.apk
    13. app-xhdpi-release.apk
    14. app-xxhdpi-release.apk
    15. app-xxxhdpi-release.apk
引用
  • 《Gradle for Android》
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/296373
推荐阅读
相关标签
  

闽ICP备14008679号