1plugins { 2 id 'com.android.application' 3} 4 5android { 6 compileSdk 31 7 8 defaultConfig { 9 applicationId "android.security.sts.sts_test_app_package" 10 minSdk 29 11 targetSdk 31 12 versionCode 1 13 versionName "1.0" 14 } 15 16 buildTypes { 17 release { 18 minifyEnabled false 19 } 20 } 21 compileOptions { 22 sourceCompatibility JavaVersion.VERSION_1_8 23 targetCompatibility JavaVersion.VERSION_1_8 24 } 25 26 lintOptions { 27 checkReleaseBuilds false 28 abortOnError false 29 } 30} 31 32dependencies { 33 34 implementation 'androidx.appcompat:appcompat:1.4.2' 35 implementation 'com.google.android.material:material:1.6.1' 36 implementation 'junit:junit:4.13.2' 37 implementation 'androidx.test.ext:junit:1.1.3' 38 implementation 'androidx.test.espresso:espresso-core:3.4.0' 39 implementation 'androidx.test.uiautomator:uiautomator:2.2.0' 40} 41