36 lines
1.2 KiB
Groovy
36 lines
1.2 KiB
Groovy
|
|
apply plugin: 'com.android.application'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 26
|
||
|
|
defaultConfig {
|
||
|
|
applicationId "com.example.vande.scouting2018"
|
||
|
|
minSdkVersion 17
|
||
|
|
targetSdkVersion 26
|
||
|
|
versionCode 1
|
||
|
|
versionName "1.0"
|
||
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
|
}
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
namespace 'com.example.ncgears.scouting'
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
||
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
||
|
|
})
|
||
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
||
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||
|
|
implementation 'com.jakewharton:butterknife:8.7.0'
|
||
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
|
||
|
|
implementation 'com.android.support:design:26.1.0'
|
||
|
|
testImplementation 'junit:junit:4.12'
|
||
|
|
implementation files('libs/javacsv.jar')
|
||
|
|
|
||
|
|
}
|