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.content.Intent; | |
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.view.View; | |
import android.widget.ArrayAdapter; | |
import android.widget.Button; | |
import android.widget.ListView; | |
public class TransitionThemeActivity extends AppCompatActivity implements View.OnClickListener { |
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
# Variable 'Key.StorePassword' was defined in the Variables tab | |
# Variable 'Key.Alias' was defined in the Variables tab | |
# Variable 'Key.Password' was defined in the Variables tab | |
# Variable 'Key.StoreFileName' was defined in the Variables tab | |
variables: | |
- name: BuildParameters.wrapperScript | |
value: gradlew | |
- name: BuildParameters.tasks | |
value: assembleRelease |
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
# Variable 'AppCenter.ConnectionName' was defined in the Variables tab | |
# Variable 'AppCenter.AppSlug' was defined in the Variables tab | |
# Variable 'AppCenter.DestinationGroupId' was defined in the Variables tab | |
parameters: | |
- name: listOfApks # name of the parameter; required | |
type: object # data type of the parameter; required | |
default: apk | |
steps: |
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 kotlinx.coroutines.CoroutineStart.LAZY | |
import kotlinx.coroutines.Deferred | |
import kotlinx.coroutines.async | |
import kotlinx.coroutines.cancelAndJoin | |
import kotlinx.coroutines.coroutineScope | |
import kotlinx.coroutines.sync.Mutex | |
import kotlinx.coroutines.sync.withLock | |
import kotlinx.coroutines.yield | |
import java.util.concurrent.atomic.AtomicReference | |
import kotlin.DeprecationLevel.ERROR |