mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	The version of gradle being used was out of date, update to a later version to fix building of uiauto apks.
		
			
				
	
	
		
			34 lines
		
	
	
		
			905 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			905 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.application'
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion 18
 | |
|     buildToolsVersion '25.0.0'
 | |
|     defaultConfig {
 | |
|         applicationId "com.arm.wa.uiauto.chrome"
 | |
|         minSdkVersion 18
 | |
|         targetSdkVersion 28
 | |
|         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
 | |
|     }
 | |
|     buildTypes {
 | |
|         applicationVariants.all { variant ->
 | |
|             variant.outputs.each { output ->
 | |
|                 output.outputFileName = "com.arm.wa.uiauto.chrome.apk"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation fileTree(include: ['*.jar'], dir: 'libs')
 | |
|     implementation 'com.android.support.test:runner:0.5'
 | |
|     implementation 'com.android.support.test:rules:0.5'
 | |
|     implementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
 | |
|     implementation(name: 'uiauto', ext: 'aar')
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     flatDir {
 | |
|         dirs 'libs'
 | |
|     }
 | |
| }
 |