|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
applicationId "gr.thmmy.mthmmy"
|
|
|
|
minSdkVersion 19
|
|
|
|
targetSdkVersion 25
|
|
|
|
versionCode 4
|
|
|
|
versionName "0.2"
|
|
|
|
archivesBaseName = "thmmyapp-v$versionName"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
def date = new Date().format('ddMMyy_HHmm');
|
|
|
|
archivesBaseName = archivesBaseName + "-$date"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile 'com.android.support:appcompat-v7:25.0.1'
|
|
|
|
compile 'com.android.support:design:25.0.1'
|
|
|
|
compile 'com.android.support:support-v4:25.0.1'
|
|
|
|
compile 'com.android.support:cardview-v7:25.0.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.0.1'
|
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.5.0'
|
|
|
|
compile 'org.jsoup:jsoup:1.10.1'
|
|
|
|
compile 'com.android.volley:volley:1.0.0'
|
|
|
|
compile 'com.github.franmontiel:PersistentCookieJar:v1.0.0'
|
|
|
|
compile('com.mikepenz:materialdrawer:5.8.0@aar') {
|
|
|
|
transitive = true
|
|
|
|
}
|
|
|
|
compile 'com.mikepenz:fontawesome-typeface:4.7.0.0@aar'
|
|
|
|
}
|