A mobile app for thmmy.gr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB

8 years ago
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
8 years ago
defaultConfig {
vectorDrawables.useSupportLibrary = true
8 years ago
applicationId "gr.thmmy.mthmmy"
minSdkVersion 19
8 years ago
targetSdkVersion 25
versionCode 4
versionName "0.2"
8 years ago
archivesBaseName = "thmmyapp-v$versionName"
8 years ago
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
8 years ago
debug {
def date = new Date().format('ddMMyy_HHmm');
archivesBaseName = archivesBaseName + "-$date"
}
8 years ago
}
}
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'
8 years ago
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'
8 years ago
compile('com.mikepenz:materialdrawer:5.8.0@aar') {
transitive = true
}
compile 'com.mikepenz:fontawesome-typeface:4.7.0.0@aar'
8 years ago
}