apply from: rootProject.file('publishing.gradle') apply plugin: 'com.android.library' android { compileSdkVersion 29 defaultConfig { minSdkVersion 9 targetSdkVersion 29 } compileOptions { sourceCompatibility 1.8 targetCompatibility 1.8 } testOptions.unitTests.includeAndroidResources = true } dependencies { api project(':aws-android-sdk-core') api project(':aws-android-sdk-cognitoidentityprovider-asf') implementation 'androidx.annotation:annotation:1.1.0' testImplementation 'junit:junit:4.13.1' testImplementation 'org.mockito:mockito-core:1.10.19' testImplementation 'org.robolectric:robolectric:4.4' testImplementation 'androidx.test:core:1.3.0' }