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
apply plugin: 'com.android.application' | |
// version information | |
def versionMajor = 1 | |
def versionMinor = 0 | |
def versionPatch = 0 | |
android { | |
compileSdkVersion 26 | |
buildToolsVersion "26.0.2" |
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 com.example | |
import org.junit.Test | |
import com.example.MainKtTest.* | |
import org.junit.Assert | |
/** | |
* Created by Andre Perkins ([email protected]) on 6/6/17. | |
*/ | |
class MainKtTest { |
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 | |
#This script performs pushes to a remote repo but does not contain the history of the branch | |
#that it was pushed from. This is useful in the case of consulting work when you want to share | |
#the current state of a repository but want to obscure the history of the work. | |
# | |
#Author:Andre Perkins <[email protected]> | |
#Description:This script pushs the current ref that the chosen local without history (without a reference to it's parent) to the abinbev repo. | |
#Options: | |
#b-local branch that should be used to push from. If not supplied, the default branch of "dev" is used |