Files
old-tfm/android/FarmAlarm/app/build.gradle

35 lines
1.1 KiB
Groovy
Raw Normal View History

2016-10-30 07:05:53 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
2016-12-30 15:49:12 +01:00
applicationId "com.zoblak.farm"
2016-10-30 07:05:53 +01:00
minSdkVersion 15
targetSdkVersion 24
2016-12-30 16:29:52 +01:00
versionCode 101
versionName "1.0.1"
2016-10-30 07:05:53 +01:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
2016-10-30 07:05:53 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile 'com.android.support:support-vector-drawable:24.2.1'
2016-10-30 07:05:53 +01:00
testCompile 'junit:junit:4.12'
2016-11-18 08:33:46 +01:00
compile 'com.android.volley:volley:1.0.0'
2016-10-30 07:05:53 +01:00
}