diff --git a/sdk/tests/android/testapp/build.gradle b/sdk/tests/android/testapp/build.gradle index 24771ce2..528c96f2 100644 --- a/sdk/tests/android/testapp/build.gradle +++ b/sdk/tests/android/testapp/build.gradle @@ -13,6 +13,7 @@ buildscript { allprojects { repositories{ google() + mavenLocal() mavenCentral() } } @@ -60,11 +61,6 @@ android { ndkVersion '23.1.7779620' } -repositories { - mavenLocal() - mavenCentral() -} - dependencies { api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.15.0-SNAPSHOT' implementation fileTree(dir: 'libs', include: ['*.jar']) @@ -75,13 +71,9 @@ dependencies { implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.13' - testImplementation 'junit:junit:4.12' androidTestImplementation "androidx.test:core:1.2.0" - androidTestImplementation "androidx.test:runner:1.5.2" androidTestImplementation "androidx.test:rules:1.5.0" - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' } diff --git a/sdk/tests/android/testapp/src/androidTest/java/software/amazon/awssdk/iottest/MainActivityTest.kt b/sdk/tests/android/testapp/src/androidTest/java/software/amazon/awssdk/iottest/MainActivityTest.kt index c14d2a3b..cdc5ebf5 100644 --- a/sdk/tests/android/testapp/src/androidTest/java/software/amazon/awssdk/iottest/MainActivityTest.kt +++ b/sdk/tests/android/testapp/src/androidTest/java/software/amazon/awssdk/iottest/MainActivityTest.kt @@ -11,7 +11,6 @@ import androidx.test.ext.junit.runners.AndroidJUnit4 import org.junit.Test import org.junit.runner.RunWith -import org.junit.Before import org.junit.Assert.* import java.lang.System