Skip to content

Instantly share code, notes, and snippets.

View luisfernandezbr's full-sized avatar
📱
Building the future!

Luis Fernandez luisfernandezbr

📱
Building the future!
View GitHub Profile
# CHOOSE PRODUCTION or DEMO
ENVIRONMENT=DEMO
# DEMO
DEMO_API_KEY=THE_CONTENT_OF_YOUR_DEMO_API_KEY_HERE
DEMO_API_SECRET=THE_CONTENT_OF_YOUR_DEMO_API_SECRET_HERE
DEMO_API_PASSPHRASE=THE_CONTENT_OF_YOUR_DEMO_API_PASSPHRASE_HERE
# PRODUCTION
API_KEY=THE_CONTENT_OF_YOUR_API_KEY_HERE
import("./iOSCiLanesFastfile")
import("./AndroidCiLanesFastfile")
#######################################################
# PUT IN THIS FILE THE LANES TO RUN LOCALLY #
#######################################################
default_platform(:ios)
platform :ios do
import("./iOSCiLanesFastfile")
import("./AndroidCiLanesFastfile")
#######################################################
# PUT IN THIS FILE THE LANES TO RUN LOCALLY #
#######################################################
default_platform(:ios)
platform :ios do
@luisfernandezbr
luisfernandezbr / MyActivityTest.kt
Created January 18, 2019 19:10
Trick to verify specified position of an view inside your parent using Espresso. Based on https://stackoverflow.com/a/24933287/659272
...
// Solution based on https://stackoverflow.com/a/24933287/659272
@Test
fun someTest() {
val textView = onView(
withId(R.id.editTextToVerifyPosition)
)