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" |
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 |