File tree 6 files changed +18
-18
lines changed
androidTest/java/de/adorsys/android/securestoragetest
main/java/de/adorsys/android/securestoragetest
src/main/java/de/adorsys/android/securestoragelibrary
6 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ android {
13
13
versionCode versionCode
14
14
versionName " ${ versionName} "
15
15
16
- testInstrumentationRunner " android.support .test.runner.AndroidJUnitRunner"
16
+ testInstrumentationRunner " androidx .test.runner.AndroidJUnitRunner"
17
17
}
18
18
buildTypes {
19
19
release {
@@ -29,12 +29,12 @@ android {
29
29
dependencies {
30
30
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
31
31
implementation project(' :securestoragelibrary' )
32
- implementation ' com.android.support :appcompat-v7:28 .0.0-rc02 '
32
+ implementation ' androidx.appcompat :appcompat:1 .0.2 '
33
33
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
34
- androidTestImplementation (' com.android.support. test.espresso:espresso-core:3.0.1 ' , {
34
+ androidTestImplementation (' androidx. test.espresso:espresso-core:3.1.0 ' , {
35
35
exclude group : ' com.android.support' , module : ' support-annotations'
36
36
})
37
- androidTestImplementation (' com.android.support. test:runner :1.0.1 ' , {
37
+ androidTestImplementation (' androidx. test.ext:junit :1.1.0 ' , {
38
38
exclude group : ' com.android.support' , module : ' support-annotations'
39
39
})
40
40
}
Original file line number Diff line number Diff line change 1
1
package de .adorsys .android .securestoragetest ;
2
2
3
- import android . support .test .rule .ActivityTestRule ;
4
- import android . support . test .runner .AndroidJUnit4 ;
3
+ import androidx .test .rule .ActivityTestRule ;
4
+ import androidx . test .ext . junit . runners .AndroidJUnit4 ;
5
5
import android .util .Log ;
6
6
7
7
import org .junit .Before ;
12
12
import de .adorsys .android .securestoragelibrary .SecurePreferences ;
13
13
import de .adorsys .android .securestoragelibrary .SecureStorageException ;
14
14
15
- import static android . support .test .espresso .Espresso .onView ;
16
- import static android . support .test .espresso .action .ViewActions .click ;
17
- import static android . support .test .espresso .action .ViewActions .closeSoftKeyboard ;
18
- import static android . support .test .espresso .action .ViewActions .scrollTo ;
19
- import static android . support .test .espresso .action .ViewActions .typeText ;
20
- import static android . support .test .espresso .matcher .ViewMatchers .withId ;
15
+ import static androidx .test .espresso .Espresso .onView ;
16
+ import static androidx .test .espresso .action .ViewActions .click ;
17
+ import static androidx .test .espresso .action .ViewActions .closeSoftKeyboard ;
18
+ import static androidx .test .espresso .action .ViewActions .scrollTo ;
19
+ import static androidx .test .espresso .action .ViewActions .typeText ;
20
+ import static androidx .test .espresso .matcher .ViewMatchers .withId ;
21
21
import static org .junit .Assert .assertEquals ;
22
22
import static org .junit .Assert .assertNotNull ;
23
23
import static org .junit .Assert .assertTrue ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import android.content.Intent
20
20
import android.net.Uri
21
21
import android.os.Build
22
22
import android.os.Bundle
23
- import android.support.v7 .app.AppCompatActivity
23
+ import androidx.appcompat .app.AppCompatActivity
24
24
import android.text.Html
25
25
import android.text.Spanned
26
26
import android.text.TextUtils
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ android {
29
29
30
30
dependencies {
31
31
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
32
- implementation ' com.android.support :appcompat-v7:28 .0.0-rc02 '
32
+ implementation ' androidx.appcompat :appcompat:1 .0.2 '
33
33
}
34
34
35
35
ext {
Original file line number Diff line number Diff line change 21
21
import android .os .Build .VERSION ;
22
22
import android .os .Build .VERSION_CODES ;
23
23
import android .security .KeyPairGeneratorSpec ;
24
- import android . support .annotation .NonNull ;
25
- import android . support .annotation .Nullable ;
24
+ import androidx .annotation .NonNull ;
25
+ import androidx .annotation .Nullable ;
26
26
import android .util .Base64 ;
27
27
import android .util .Log ;
28
28
import android .view .View ;
Original file line number Diff line number Diff line change 18
18
19
19
import android .content .Context ;
20
20
import android .content .SharedPreferences ;
21
- import android . support .annotation .NonNull ;
22
- import android . support .annotation .Nullable ;
21
+ import androidx .annotation .NonNull ;
22
+ import androidx .annotation .Nullable ;
23
23
import android .text .TextUtils ;
24
24
25
25
import java .util .HashSet ;
You can’t perform that action at this time.
0 commit comments