1apply plugin: 'com.android.library' 2 3android { 4 compileSdk 34 5 namespace 'org.robolectric.integrationtests.agp.testsupport' 6 7 defaultConfig { 8 minSdk 19 9 targetSdk 34 10 } 11 12 compileOptions { 13 sourceCompatibility = '1.8' 14 targetCompatibility = '1.8' 15 } 16} 17 18dependencies { 19 api project(":integration_tests:agp") 20} 21