1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-14 14:50:54 +01:00
Luis Machado 510b344aa5 [framework/uiauto] Update uiauto library to move away from android.support and into androidx
Currently the uiauto library is built on top of the deprecated android.support
libraries. Create an updated uiauto library (uiauto-androidx) using androidx
and keep it alongside the old one for compatibility reasons.

As we update workload-automation going forward, we should update the workloads
to use the androidx version of uiauto.

This has been tested with the latest gradle version available at the time
(8.8).
2024-07-16 14:10:44 +01:00

20 lines
595 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 28
// buildToolsVersion is no longer used/accepted.
// buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
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'
}