Skip to content

Commit 22351e0

Browse files
updated path for keystore
1 parent 93806c1 commit 22351e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

contentstack/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,20 +71,20 @@ android {
7171

7272
testOptions {
7373
unitTests.all {
74-
jacoco {
75-
includeNoLocationClasses = true
76-
}
74+
// jacoco {
75+
// includeNoLocationClasses = true
76+
// }
7777
}
7878
}
7979
signingConfigs {
8080
debug {
81-
storeFile file("/Users/shaileshmishra/keystore/key.keystore")
81+
storeFile file("../key.keystore")
8282
storePassword 'android'
8383
keyAlias 'key0'
8484
keyPassword 'android'
8585
}
8686
release {
87-
storeFile file("/Users/shaileshmishra/keystore/key.keystore")
87+
storeFile file("../key.keystore")
8888
storePassword 'android'
8989
keyAlias 'key0'
9090
keyPassword 'android'
@@ -98,7 +98,7 @@ android {
9898
versionCode 1
9999
versionName "1.0"
100100
useLibrary 'org.apache.http.legacy'
101-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
101+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
102102
signingConfig signingConfigs.release
103103
}
104104

@@ -143,7 +143,7 @@ dependencies {
143143
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
144144
testImplementation 'junit:junit:4.13.2'
145145
androidTestImplementation 'androidx.test:core:1.5.0'
146-
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
146+
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
147147
exclude group: 'com.android.support', module: 'support-annotations'
148148
})
149149
}

0 commit comments

Comments
 (0)