最近,在研究APP自動化相關的東西,在搭建環境的時候,遇到的坑以及最後解決的方法,不過目前不少東西瞭解得還不是很細,暫時先簡單的記錄一下
1、build配置文件android
主要分爲兩種:服務器
一、工程下的build配置文件;閉包
二、模塊目錄的build配置文件;以下圖:app
1)工程下的build文件配置,主要包括如下內容:框架
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { //使用maven倉庫。android有兩個標準的library文件服務器,一個jcenter一個maven。二者毫無關係。 //jcenter有的maven可能沒有,反之亦然。 //若是要使用jcenter的話就把mavenCentral()替換成jcenter() google() jcenter() // mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() //mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() //mavenCentral() //maven { url "http://18.8.10.110:8081/nexus/content/repositories/releases/" } } } task clean(type: Delete) { delete rootProject.buildDir }
//聲明是Android程序 apply plugin: 'com.android.application' android { //編譯sdk的版本,也就是API Level,例如API-2三、API-2四、API-25等等 compileSdkVersion 26 //build tools的版本,其中包括了打包工具aapt、dx等等。 //這個工具的目錄位於你的sdk目錄/build-tools/下 buildToolsVersion '26.0.2' defaultConfig { //應用包名 applicationId "com.cxq.myapplication" //最小sdk版本,若是設備小於這個版本或者大於maxSdkVersion(通常不用)將沒法安裝這個應用 minSdkVersion 26 //目標sdk版本,若是設備等於這個版本那麼android平臺就不進行兼容性檢查,運行效率會高一點 targetSdkVersion 26 //版本更新了幾回,初版應用是1,之後每更新一次加1 versionCode 1 //版本信息,這個會顯示給用戶,就是用戶看到的版本號 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release {//release版本的配置 minifyEnabled false //是否進行混淆 //release的Proguard默認爲Module下的proguard-rules.pro文件. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' matchingFallbacks = ['release', 'debug'] } } } //一些依賴的框架 dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:26.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' androidTestImplementation 'com.android.support.test:rules:1.0.1' implementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3' //implementation files('libs/uiautomator.jar') //implementation 'com.gionee.autotests.common:common-lib:1.0.7' //implementation 'com.gionee.android.autotests.common:android-common:+' }
還有一些其餘的設置問題,後續再作更新;maven