- Go to Admin > Integrations > GitHub or Bitbucket
- Fill secret key or use the auto generated one
- Copy the payload URL input
- Click on Settings > Webhooks & Services > Add webhook
- On that screen set the payload url with the payload url from Taiga
| package manager | |
| import android.content.Context | |
| import android.net.ConnectivityManager | |
| import android.net.Network | |
| import android.net.NetworkCapabilities | |
| import android.net.NetworkRequest | |
| import android.os.Build | |
| import android.util.Log | |
| import com.jakewharton.rxrelay2.BehaviorRelay |
| def getVersionName = { getVersionProps()['appVersionName'] } | |
| def getVersionProps() { | |
| def versionPropsFile = file('gradle.properties') | |
| if (!versionPropsFile.exists()) { | |
| versionPropsFile.createNewFile() | |
| } | |
| def versionProps = new Properties() | |
| versionProps.load(new FileInputStream(versionPropsFile)) | |
| return versionProps |
| if [ ! -z "${IDE}" -a "${IDE}" == "AndroidStudio" ]; then | |
| cd $OLDPWD; | |
| fi |
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <!-- | |
| # Material Design Dimensions | |
| These common dimensions for spacing and typepography that | |
| are provided as per Material Design Guidelines. | |
| --> | |
| <!-- Margin & Padding, 8 dp baseline, https://material.io/design/layout/understanding-layout.html --> |
| 1. Create a file called .bash_aliases using your favorite text editor. | |
| gedit .bash_aliases | |
| 2. Write the alias you want to create, e.g: | |
| alias update='sudo apt-get update' | |
| 3. Save the file and reconfigure your bashrc. | |
| . ~/.bashrc | |
| 4. Check if your alias is added correctly. |
| package com.collectiveidea.example; | |
| import android.content.Intent; | |
| import android.support.test.espresso.intent.Intents; | |
| import android.support.test.rule.ActivityTestRule; | |
| import android.support.test.runner.AndroidJUnit4; | |
| import com.collectiveidea.example.ui.LoginActivity; | |
| import com.collectiveidea.example.ui.MainActivity; | |
| import com.collectiveidea.example.util.AccountUtility; |
| import android.os.SystemClock; | |
| import android.view.View; | |
| import java.util.Map; | |
| import java.util.WeakHashMap; | |
| /** | |
| * A Debounced OnClickListener | |
| * Rejects clicks that are too close together in time. | |
| * This class is safe to use as an OnClickListener for multiple views, and will debounce each one separately. |