This file contains hidden or 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
name: PR checks | |
on: | |
issue_comment: | |
types: [ created, edited ] | |
pull_request: | |
branches: | |
- master | |
jobs: |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="@android:color/white"> | |
<com.loukwn.stagestepbar.StageStepBar | |
android:id="@+id/stageStepbar" | |
android:layout_width="match_parent" | |
android:layout_height="200dp" |
This file contains hidden or 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
class ViewTests { | |
@get:Rule | |
val paparazzi = Paparazzi() // This can be configured to use different devices etc. | |
private lateinit var stageStepBar: StageStepBar | |
private lateinit var parentView: FrameLayout | |
private lateinit var testNameTextView: TextView | |
@Before |
This file contains hidden or 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 | |
username=$(whoami) | |
if [[ $# -eq 0 ]]; then | |
echo "No arguments supplied" | |
else | |
# get the extension uuid | |
ext_name=$(unzip -c $1 metadata.json | grep uuid | cut -d \" -f4) |
This file contains hidden or 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
import android.content.Context; | |
import android.os.Build; | |
import android.support.annotation.Nullable; | |
import android.support.v4.view.NestedScrollingParent; | |
import android.support.v7.widget.RecyclerView; | |
import android.util.AttributeSet; | |
import android.view.MotionEvent; | |
import android.view.View; | |
public class NestedRecycler extends RecyclerView implements NestedScrollingParent { |