1
0
Fork 0
QUOZ/app/build.gradle

37 lines
1010 B
Groovy
Raw Normal View History

2016-08-02 19:30:47 +00:00
apply plugin: 'com.android.application'
android {
signingConfigs {
config {
keyAlias 'AndroidKey'
storeFile file('C:/Users/Jonathan/Documents/Projects/Keystores/android.jks')
keyPassword 'jhwc2214'
storePassword 'jhwc2214'
}
}
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
}
}
}
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'
}