File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -296,6 +296,9 @@ jobs:
296
296
- run :
297
297
name : Run e2e tests
298
298
command : yarn test:e2e:android
299
+ - run :
300
+ name : Clear previous app from device
301
+ command : adb uninstall com.microsoft.reacttestapp
299
302
- run :
300
303
name : Run e2e tests for Next storage
301
304
command : yarn detox test -c android.emu.release.next --maxConcurrency 1
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ allprojects {
75
75
androidExtension. buildTypes. release. signingConfig = androidExtension. signingConfigs. test
76
76
androidExtension. buildTypes {
77
77
next {
78
+ // this build type is used on CI (to have app with and without nextStorage)
78
79
initWith release
79
80
matchingFallbacks = [" debug" , " release" ]
80
81
}
@@ -87,6 +88,9 @@ allprojects {
87
88
}
88
89
project. dependencies {
89
90
androidTestImplementation(' com.wix:detox:+' )
91
+
92
+ def hermesDir = file(' ../../node_modules/hermes-engine/android' ). absolutePath
93
+ nextImplementation files(" $hermesDir /hermes-release.aar" )
90
94
}
91
95
}
92
96
}
You can’t perform that action at this time.
0 commit comments