1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-25 03:59:11 +00:00

[workloads/jetnews] Bump the minSdkVersion to 28 and targetSdkVersion to 34

API level 27 (Android 8.1/Oreo) doesn't report a frame metric called
"deadline missed", but the JankTest library expects to be able to find
data for that metric. If it is not found, an assertion is reported and
the run fails.

Given Android Oreo is reasonably old at this point, set the minimum SDK
version to 28 so we can gather all the metrics we need.

Also bump the targetSdkVersion to make it clear what version was used
for putting this code together.
This commit is contained in:
Luis Machado 2024-11-26 13:10:22 +00:00
parent 0cdccc137e
commit 0dcae68715
2 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ android {
compileSdkVersion 34 compileSdkVersion 34
defaultConfig { defaultConfig {
applicationId "${packageName}" applicationId "${packageName}"
minSdkVersion 23 minSdkVersion 28
targetSdkVersion 28 targetSdkVersion 34
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
buildTypes { buildTypes {