mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	uiauto: Update all applications to target SDK version 28
On devices running android 9 with google play services, PlayProtect blocks the installation of our automation apks due to targeting a lower SDK version. Update all apk builds to target SDK version 28 (Android 9) however do not change the minimum version to maintain backwards compatibility.
This commit is contained in:
		| @@ -3,12 +3,12 @@ apply plugin: 'com.android.application' | ||||
| def packageName = "com.arm.wa.uiauto.benchmarkpi" | ||||
|  | ||||
| android { | ||||
|     compileSdkVersion 25 | ||||
|     buildToolsVersion "25.0.3" | ||||
|     compileSdkVersion 28 | ||||
|     buildToolsVersion "28.0.3" | ||||
|     defaultConfig { | ||||
|         applicationId "${packageName}" | ||||
|         minSdkVersion 18 | ||||
|         targetSdkVersion 25 | ||||
|         targetSdkVersion 28 | ||||
|         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||||
|     } | ||||
|     buildTypes { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user