- screenshot library setup

- pull screenshot after tests
 - update to fastfile to produce bundles instead of .apks

Took 4 hours 17 minutes
This commit is contained in:
2023-06-26 22:40:30 +01:00
parent 18106330c9
commit 2daf11e4d7
11 changed files with 91 additions and 58 deletions

View File

@@ -36,18 +36,18 @@ android {
}
}
// signingConfigs {
// release {
// storePassword relStorePassword
// keyPassword relKeyPassword
// keyAlias relKeyAlias
// storeFile file(relStoreFile)
// }
// }
signingConfigs {
release {
storePassword relStorePassword
keyPassword relKeyPassword
keyAlias relKeyAlias
storeFile file(relStoreFile)
}
}
buildTypes {
release {
// signingConfig signingConfigs.release
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
@@ -162,6 +162,6 @@ dependencies {
def retrofit_version = "2.9.0"
androidTestImplementation "com.squareup.retrofit2:retrofit:$retrofit_version"
androidTestImplementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
/ * Spoon screenshot library */
androidTestImplementation 'com.squareup.spoon:spoon-client:1.1.1'
/ * screenshot library */
androidTestImplementation 'tools.fastlane:screengrab:2.1.1'
}