SimpleMarkdown/app/build.gradle

105 lines
4 KiB
Groovy
Raw Normal View History

2017-07-25 04:37:23 +00:00
apply plugin: 'com.android.application'
2019-05-16 03:38:29 +00:00
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2019-03-20 01:50:01 +00:00
apply plugin: 'io.fabric'
2018-10-16 01:41:33 +00:00
2018-09-05 00:45:01 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2017-07-25 04:37:23 +00:00
android {
2017-08-23 17:24:48 +00:00
configurations.all {
resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
}
packagingOptions {
exclude 'META-INF/LICENSE-LGPL-2.1.txt'
exclude 'META-INF/LICENSE-LGPL-3.txt'
exclude 'META-INF/LICENSE-W3C-TEST'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
}
2019-05-18 01:17:42 +00:00
compileSdkVersion 'android-Q'
2018-10-16 12:30:28 +00:00
buildToolsVersion '28.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2017-07-25 04:37:23 +00:00
defaultConfig {
applicationId "com.wbrawner.simplemarkdown"
2019-05-18 06:29:15 +00:00
minSdkVersion 20
2019-05-18 01:17:42 +00:00
targetSdkVersion 'Q'
2019-03-20 01:50:01 +00:00
multiDexEnabled true
versionCode 18
versionName "0.6.0"
2019-05-16 03:38:29 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-05-18 06:29:15 +00:00
buildConfigField "boolean", "ENABLE_CUSTOM_CSS", "false"
2017-07-25 04:37:23 +00:00
}
2018-09-05 00:45:01 +00:00
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2017-07-25 04:37:23 +00:00
buildTypes {
release {
2017-12-24 01:24:55 +00:00
minifyEnabled true
2017-07-25 04:37:23 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2018-09-05 00:45:01 +00:00
signingConfig signingConfigs.release
2019-05-18 01:17:14 +00:00
buildConfigField "boolean", "ENABLE_CUSTOM_CSS", "false"
2017-07-25 04:37:23 +00:00
}
}
2017-12-24 01:24:55 +00:00
flavorDimensions "platform"
dexOptions {
jumboMode true
}
2018-01-27 22:51:45 +00:00
testOptions {
unitTests {
includeAndroidResources = true
}
}
2017-07-25 04:37:23 +00:00
}
dependencies {
2019-05-16 03:38:29 +00:00
def lifecycle_version = "2.0.0"
2017-12-24 01:24:55 +00:00
testImplementation 'junit:junit:4.12'
2019-03-20 01:50:01 +00:00
testImplementation 'org.robolectric:robolectric:4.2'
2018-09-05 00:45:01 +00:00
implementation fileTree(include: ['*.jar'], dir: 'libs')
2019-05-16 03:38:29 +00:00
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
2017-12-24 01:24:55 +00:00
exclude group: 'com.android.support', module: 'support-annotations'
})
2019-05-16 03:38:29 +00:00
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test:rules:1.1.1'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
2017-12-24 01:24:55 +00:00
implementation 'com.commonsware.cwac:anddown:0.3.0'
2019-05-18 01:17:14 +00:00
implementation 'com.google.dagger:dagger:2.22.1'
annotationProcessor 'com.google.dagger:dagger-compiler:2.22.1'
kapt 'com.google.dagger:dagger-android-processor:2.22.1'
kapt 'com.google.dagger:dagger-compiler:2.22.1'
2017-12-24 01:24:55 +00:00
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
implementation 'com.jakewharton.rxbinding2:rxbinding-design:2.0.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.7'
2019-05-18 01:17:14 +00:00
implementation 'com.google.firebase:firebase-core:16.0.9'
2019-02-10 19:12:51 +00:00
implementation 'com.android.billingclient:billing:1.2'
2019-05-18 01:17:14 +00:00
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.0'
2019-05-16 03:38:29 +00:00
implementation 'androidx.multidex:multidex:2.0.1'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
2019-05-18 01:17:14 +00:00
compile "androidx.core:core-ktx:1.0.2"
2019-05-16 03:38:29 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
2017-07-25 04:37:23 +00:00
}
2019-02-10 19:12:51 +00:00
apply plugin: 'com.google.gms.google-services'
2019-05-16 03:38:29 +00:00
repositories {
mavenCentral()
}