Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發環境 >> Android Studio(十六):配置你的構建

Android Studio(十六):配置你的構建

編輯:Android開發環境

  Android構建系統編譯你的app資源和源碼並且打包到APK中,你可以用來測試,部署,簽名和發布。Android Studio使用Gradle,一個高級的構建套件,來自動化和管理構建進程,同時可以允許你靈活的自定義構建配置。每個構建配置可以定義它自己的代碼和資源集合。

  Gradle和Android插件獨立於Android Studio運行。這就意味著你可以在你的機器上在命令行、Android Studio、或者沒有安裝Android Studio的機器中構建你的Android APP。

  Android構建系統的靈活性允許你在不修改你的APP核心代碼的情況下運行自定義的構建配置。

  構建進程

  構建進程包含很多工具和進程來幫助將你的項目轉化為APK(Android Application Package)。構建進程非常靈活。

Android Studio(十六):配置你的構建

  遵循如下幾步:

  1、 編譯器將你的源碼轉化為DEX(Dalvik Executable)文件,包含Android設備中可以運行的字節碼和其他編譯的資源文件。

  2、 APK打包工具將DEX文件和編譯後的資源打包到一個單獨的APK中,但是在你安裝和部署之前,APK必須進行簽名。

  3、 APK打包工具會用debug key或者release key對你的APK進行簽名。

  4、 在你生成最終的APK之前,打包工具只用aipalign工具來優化你的代碼。這可以在app運行時降低內存。

  自定義構建配置

  Build Types

  構建類型定義在構建和打包app是Gradle使用的一些屬性配置。在不同的開發周期是不同的。比如,debug 構建類型開啟調試選項並且使用debug key對APK進行簽名。而release 構建類型可能需要壓縮、模糊並且使用release key對APK進行簽名。為了構建你的app,你必須至少聲明一種類型。

  Product Flavors

  Product flavors代表發布給用戶的不同版本的APP。比如,免費和付費的APP版本。你可以通過定制Product flavors來使用不同的代碼和資源,同時共用所有版本APP可復用的部分。Product Flavors是可選的,你必須手動創建它們。

  Build Variants

  Build variant是build type和product flavor混合的產物。這是Gradle用來構建你的app的相關配置。通過使用build variant,你可以在開發中構建你的product flavor的debug版本,或者product flavor的簽名的發布版本。雖然你沒有直接配置build variant,你可以通過配置build type和product flavor來實現對build variant的配置。創建額外的build type或者product flavor同樣可以創建額外的build variant。

  Mainfest Entries

  你可以在build variant配置裡聲明manifest文件裡的一些屬性值。這些值會腹瀉manifest文件中已經存在的值。

  Dependencies

  構建系統管理項目的依賴,從本地的依賴到遠程的依賴。這個可以讓你方便的對依賴進行管理。

  Signing

  構建系統允許你在構建配置中聲明簽名設置,這可以在你構建的時候自動的對你的APK進行簽名。構建系統不會對release版本進行簽名,除非你定義一個簽名配置。

  ProGuard

  構建系統允許你為每一個build variant聲明一個不同的ProGuard規則文件。

  構建配置文件

  創建自定義的配置需要你對一個或多個構建配置文件進行更改,或者build.gradle文件。這些文本使用DSL來描述和控制構建邏輯。

  當你創建一個新的項目時,Android Studio自動為你創建一些文件,如圖:

Android Studio(十六):配置你的構建

  這是一些Gradle構建配置文件,作為Android應用標准項目結構的一部分。

  Gradle設置文件

  gradle.settings文件位於項目的根目錄下,來通知Gradle在構建你的應用的時候需要包括哪些模塊,大部分項目如下:

  include ‘:app’

  頂層的構建文件

  位於項目根目錄的build.gradle文件,定義了可以應用於你的項目的所有模塊的構建配置。默認情況下,頂層的構建文件在buildscript{}中定義Gradle repositories和依賴,這可以應用到項目的所有的模塊中。如下:

Java代碼
  1. /** 
  2.  * The buildscript {} block is where you configure the repositories and 
  3.  * dependencies for Gradle itself--meaning, you should not include dependencies 
  4.  * for your modules here. For example, this block includes the Android plugin for 
  5.  * Gradle as a dependency because it provides the additional instructions Gradle 
  6.  * needs to build Android app modules. 
  7.  */  
  8.   
  9. buildscript {  
  10.   
  11.     /** 
  12.      * The repositories {} block configures the repositories Gradle uses to 
  13.      * search or download the dependencies. Gradle pre-configures support for remote 
  14.      * repositories such as JCenter, Maven Central, and Ivy. You can also use local 
  15.      * repositories or define your own remote repositories. The code below defines 
  16.      * JCenter as the repository Gradle should use to look for its dependencies. 
  17.      */  
  18.   
  19.     repositories {  
  20.         jcenter()  
  21.     }  
  22.   
  23.     /** 
  24.      * The dependencies {} block configures the dependencies Gradle needs to use 
  25.      * to build your project. The following line adds Android Plugin for Gradle 
  26.      * version 2.0.0 as a classpath dependency. 
  27.      */  
  28.   
  29.     dependencies {  
  30.         classpath 'com.android.tools.build:gradle:2.0.0'  
  31.     }  
  32. }  
  33.   
  34. /** 
  35.  * The allprojects {} block is where you configure the repositories and 
  36.  * dependencies used by all modules in your project, such as third-party plugins 
  37.  * or libraries. Dependencies that are not required by all the modules in the 
  38.  * project should be configured in module-level build.gradle files. For new 
  39.  * projects, Android Studio configures JCenter as the default repository, but it 
  40.  * does not configure any dependencies. 
  41.  */  
  42.   
  43. allprojects {  
  44.    repositories {  
  45.        jcenter()  
  46.    }  
  47. }  

  模塊構建文件

  模塊的build.gradle文件,位於//目錄下,允許你對特定的模塊進行構建配置。配置這些構建設置允許你提供自定義的打包選項,比如額外的build type和product flavor,復寫mainfies中的設置或者頂層build.gradle文件的配置。代碼如下:

Java代碼
  1. /** 
  2.  * The first line in the build configuration applies the Android plugin for 
  3.  * Gradle to this build and makes the android {} block available to specify 
  4.  * Android-specific build options. 
  5.  */  
  6.   
  7. apply plugin: 'com.android.application'  
  8.   
  9. /** 
  10.  * The android {} block is where you configure all your Android-specific 
  11.  * build options. 
  12.  */  
  13.   
  14. android {  
  15.   
  16.   /** 
  17.    * compileSdkVersion specifies the Android API level Gradle should use to 
  18.    * compile your app. This means your app can use the API features included in 
  19.    * this API level and lower. 
  20.    * 
  21.    * buildToolsVersion specifies the version of the SDK build tools, command-line 
  22.    * utilities, and compiler that Gradle should use to build your app. You need to 
  23.    * download the build tools using the SDK Manager. 
  24.    */  
  25.   
  26.   compileSdkVersion 23  
  27.   buildToolsVersion "23.0.3"  
  28.   
  29.   /** 
  30.    * The defaultConfig {} block encapsulates default settings and entries for all 
  31.    * build variants, and can override some attributes in main/AndroidManifest.xml 
  32.    * dynamically from the build system. You can configure product flavors to override 
  33.    * these values for different versions of your app. 
  34.    */  
  35.   
  36.   defaultConfig {  
  37.   
  38.     /** 
  39.      * applicationId uniquely identifies the package for publishing. 
  40.      * However, your source code should still reference the package name 
  41.      * defined by the package attribute in the main/AndroidManifest.xml file. 
  42.      */  
  43.   
  44.     applicationId 'com.example.myapp'  
  45.   
  46.     // Defines the minimum API level required to run the app.  
  47.     minSdkVersion 14  
  48.   
  49.     // Specifies the API level used to test the app.  
  50.     targetSdkVersion 23  
  51.   
  52.     // Defines the version number of your app.  
  53.     versionCode 1  
  54.   
  55.     // Defines a user-friendly version name for your app.  
  56.     versionName "1.0"  
  57.   }  
  58.   
  59.   /** 
  60.    * The buildTypes {} block is where you can configure multiple build types. 
  61.    * By default, the build system defines two build types: debug and release. The 
  62.    * debug build type is not explicitly shown in the default build configuration, 
  63.    * but it includes debugging tools and is signed with the debug key. The release 
  64.    * build type applies Proguard settings and is not signed by default. 
  65.    */  
  66.   
  67.   buildTypes {  
  68.   
  69.     /** 
  70.      * By default, Android Studio configures the release build type to enable code 
  71.      * shrinking, using minifyEnabled, and specifies the Proguard settings file. 
  72.      */  
  73.   
  74.     release {  
  75.         minifyEnabled true // Enables code shrinking for the release build type.  
  76.         proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
  77.     }  
  78.   }  
  79.   
  80.   /** 
  81.    * The productFlavors {} block is where you can configure multiple product 
  82.    * flavors. This allows you to create different versions of your app that can 
  83.    * override defaultConfig {} with their own settings. Product flavors are 
  84.    * optional, and the build system does not create them by default. This example 
  85.    * creates a free and paid product flavor. Each product flavor then specifies 
  86.    * its own application ID, so that they can exist on the Google Play Store, or 
  87.    * an Android device, simultaneously. 
  88.    */  
  89.   
  90.   productFlavors {  
  91.     free {  
  92.       applicationId 'com.example.myapp.free'  
  93.     }  
  94.   
  95.     paid {  
  96.       applicationId 'com.example.myapp.paid'  
  97.     }  
  98.   }  
  99. }  
  100.   
  101. /** 
  102.  * The dependencies {} block in the module-level build configuration file 
  103.  * only specifies dependencies required to build the module itself. 
  104.  */  
  105.   
  106. dependencies {  
  107.     compile project(":lib")  
  108.     compile 'com.android.support:appcompat-v7:22.0.1'  
  109.     compile fileTree(dir: 'libs', include: ['*.jar'])  
  110. }  

  Gradle屬性文件

  Gradle也包括兩個屬性文件,在項目的根目錄。你可以用來聲明Gradle構建套件的設置:

  Gradle.properties

  這裡你可以設置全局Gradle設置。

  Local.properties

  為你的構建系統配置本地環境屬性,比如SDK安裝位置。因為這個文件的內容是Android Studio自動生成的,針對本地的開發環境,所以你不需要手動更改這個文件或者將其添加到你的版本控制系統中。

  使用Gradle同步項目

  當你更改了你的項目中的構建配置文件之後,Android Studio需要你同步你的項目,這樣你就可以導入你的項目配置並且運行一些檢測來確保你的配置不會導致創建構建錯誤。

  同步你的項目文件,在你更改之後,會有個提示框,點擊Sync Now。如果發現問題,Android Studio會報錯:

Android Studio(十六):配置你的構建

  Source Sets

  Android Studio為每個模塊合理的組織代碼和資源。一個模塊的main目錄包含了代碼和資源。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved