urban-explorer/app/build.gradle

52 lines
1.4 KiB
Groovy
Raw Normal View History

2016-08-30 09:36:01 +00:00
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
// The Fabric Gradle plugin uses an open ended version to react
// quickly to Android tooling updates
classpath 'io.fabric.tools:gradle:1.+'
}
}
2016-08-26 19:55:33 +00:00
apply plugin: 'com.android.application'
2016-08-30 09:36:01 +00:00
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
2016-08-26 19:55:33 +00:00
android {
compileSdkVersion 21
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "pl.tpolgrabia.urbanexplorer"
minSdkVersion 21
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'
compile 'com.googlecode.android-query:android-query:0.25.9'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
2016-08-30 09:36:01 +00:00
compile('com.crashlytics.sdk.android:crashlytics:2.6.2@aar') {
transitive = true;
}
compile 'org.apache.commons:commons-lang3:3.4'
2016-08-26 19:55:33 +00:00
}