apply from: rootProject.file('publishing.gradle') apply plugin: 'com.android.library' android { compileSdkVersion 29 defaultConfig { minSdkVersion 14 // androidx core, for NotificationCompat targetSdkVersion 29 } } dependencies { api project(':aws-android-sdk-core') implementation 'androidx.core:core:1.3.1' testImplementation 'androidx.test:core:1.3.0' testImplementation 'junit:junit:4.13.1' testImplementation 'org.hamcrest:hamcrest:2.2' testImplementation 'org.mockito:mockito-all:1.10.19' testImplementation 'org.robolectric:robolectric:4.4' }