Skip to content

Instantly share code, notes, and snippets.

@ThomasStuetz
Created January 7, 2015 09:39
Show Gist options
  • Save ThomasStuetz/a995fa82ef9d197c8891 to your computer and use it in GitHub Desktop.
Save ThomasStuetz/a995fa82ef9d197c8891 to your computer and use it in GitHub Desktop.
Espresso Test 01
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "at.htl.espressotest"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.0'
androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment