View gist:78606ed9097b844def11d2b84c9ef707
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PATH="$PATH:/usr/local/bin/" | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export PATH="$PATH:$JAVA_HOME/bin" | |
export M2_HOME="/Applications/apache-maven-3.6.0" | |
export PATH="$PATH:$M2_HOME/bin" | |
export ANDROID_HOME="/Users/Jacob/Library/Android/sdk" | |
export PATH="${PATH}:$ANDROID_HOME/platform-tools" | |
export PATH="${PATH}:$ANDROID_HOME/emulator" |
View iOSPushNotification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class iOSPushNotification extends AppiumObject implements Interaction { | |
private String show; | |
public iOSPushNotification(String show) { | |
this.show = show; | |
} | |
@Override |