tracman-android/app/build.gradle

51 lines
1.4 KiB
Groovy
Raw Permalink Normal View History

2017-02-23 19:58:33 -07:00
apply plugin: 'com.android.application'
// Load keystore properties
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
signingConfigs {
config {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
compileSdkVersion 23
2018-01-31 10:59:27 -07:00
buildToolsVersion '26.0.2'
2017-02-23 19:58:33 -07:00
defaultConfig {
applicationId "us.keithirwin.tracman"
2017-04-19 06:43:51 -06:00
minSdkVersion 15
2017-02-23 19:58:33 -07:00
targetSdkVersion 23
2018-01-28 14:41:59 -07:00
versionCode 13
versionName "0.6.1"
2017-02-23 19:58:33 -07:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
zipAlignEnabled true
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:support-v4:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.google.android.gms:play-services-location:9.8.0'
compile 'com.google.android.gms:play-services-auth:9.8.0'
compile ('io.socket:socket.io-client:0.8.3'){
exclude group:'org.json', module:'json'
2017-02-23 19:58:33 -07:00
}
2017-03-06 01:54:02 -07:00
compile 'com.squareup.retrofit2:retrofit:2.2.0'
2017-02-23 19:58:33 -07:00
}
apply plugin: 'com.google.gms.google-services'