Download this file
build.gradle
49 lines (38 with data), 1.2 kB
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "eu.alfred.navigationapp"
minSdkVersion 19
targetSdkVersion 23
versionCode 25
versionName "1.0.25"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'eu.alfred.personalassistant.sharedlibrary:PersonalAssistantShared-debug@aar'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.maps.android:android-maps-utils:0.4.+'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.github.jd-alexander:library:1.1.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services-identity:8.4.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
}
apply plugin: 'com.google.gms.google-services'