1
0
Fork 0
QUOZ/app/build.gradle

43 lines
1.2 KiB
Groovy
Raw Normal View History

2016-08-02 19:30:47 +00:00
apply plugin: 'com.android.application'
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2016-08-02 19:30:47 +00:00
android {
signingConfigs {
config {
keyAlias 'AndroidKey'
keyPassword keystoreProperties['password']
storeFile file('C:/Users/Jonathan/Documents/Projects/Keystores/android.jks')
storePassword keystoreProperties['password']
}
}
2016-08-02 19:30:47 +00:00
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "nonphatic.quoz"
minSdkVersion 19
2016-08-02 19:30:47 +00:00
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
2016-08-02 19:30:47 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
2016-08-02 19:30:47 +00:00
}
debug {
}
2016-08-02 19:30:47 +00:00
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
2016-08-02 19:30:47 +00:00
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:design:24.1.1'
}