ProjectMonster/app/build.gradle
Gabriel Tofvesson e5e36f24cc Initial commit
2016-06-21 11:24:00 +02:00

30 lines
741 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '24.0.0 rc2'
defaultConfig {
applicationId "com.gabriel.projectmonster"
minSdkVersion 10
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'org.jsoup:jsoup:1.9.2'
}