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
package org.mariotaku.twidere.util; | |
import android.view.View; | |
import android.widget.AbsListView; | |
import android.widget.AbsListView.OnScrollListener; | |
/** | |
* Created by mariotaku on 14/10/22. | |
*/ | |
public class ListScrollDistanceCalculator implements OnScrollListener { |
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/sh | |
# locations of various tools | |
CURL=curl | |
SERVER_ENDPOINT=https://rink.hockeyapp.net/api/2/ | |
# Put your HockeyApp APP_TOKEN here. Find it in your HockeyApp account settings. | |
APP_TOKEN="" |
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
import android.bluetooth.BluetoothDevice; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.IntentFilter; | |
import com.polidea.rxandroidble2.RxBleDevice; | |
import java.lang.reflect.Method; | |
import java.util.concurrent.TimeUnit; |