2017-06-01 14:46:28 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2019-09-20 15:36:32 +01:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.0.3'
|
2017-06-01 14:46:28 +01:00
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 18
|
2019-09-20 15:36:32 +01:00
|
|
|
targetSdkVersion 28
|
2017-06-01 14:46:28 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-02-27 15:18:01 +00:00
|
|
|
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'
|
2017-06-01 14:46:28 +01:00
|
|
|
}
|