apply plugin: 'com.android.application' android { compileSdkVersion 27 buildToolsVersion "27.0.3" defaultConfig { applicationId "org.fox.ttcomics2" buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" minSdkVersion 19 targetSdkVersion 27 } signingConfigs { fdroid { if (project.hasProperty("FDROID_STORE_FILE")) { storeFile file(FDROID_STORE_FILE) storePassword FDROID_STORE_PASSWORD keyAlias FDROID_KEY_ALIAS keyPassword FDROID_KEY_PASSWORD } } } lintOptions { abortOnError false checkReleaseBuilds false disable 'MissingTranslation' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } fdroid { minifyEnabled false versionNameSuffix "-fdroid" proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' signingConfig signingConfigs.fdroid //matchingFallbacks = ['release'] } } } dependencies { compile 'com.android.support:support-v4:27.1.0' compile 'com.android.support:appcompat-v7:27.1.0' compile 'com.android.support:cardview-v7:27.1.0' compile 'com.android.support:design:27.1.0' compile 'com.shamanland:fab:0.0.8' compile 'jp.co.recruit_mp:android-HeaderFooterGridView:0.2.4' compile 'com.github.bumptech.glide:glide:3.8.0' compile 'ch.acra:acra:4.9.1' compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar' compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar' compile 'frankiesardo:icepick:3.2.0' provided 'frankiesardo:icepick-processor:3.2.0' compile 'com.github.livefront:bridge:v1.1.2' annotationProcessor 'frankiesardo:icepick-processor:3.2.0' compile 'com.google.android.gms:play-services-base:15.0.1' compile 'com.google.android.gms:play-services-auth:15.0.1' compile files('libs/nineoldandroids-2.4.0.jar') compile 'com.gu:option:1.3' compile 'net.rdrei.android.dirchooser:library:3.2@aar' }