Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
This reverts commit a16c48d.
  • Loading branch information
moezbhatti committed Aug 27, 2019
1 parent de63045 commit d221694
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'io.fabric.tools:gradle:1.29.0'
Expand Down
5 changes: 5 additions & 0 deletions data/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ android {
publishNonDefault true
flavorDimensions "analytics"

compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}

defaultConfig {
minSdkVersion 21
targetSdkVersion 28
Expand Down
5 changes: 5 additions & 0 deletions domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 28

compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}

defaultConfig {
minSdkVersion 21
targetSdkVersion 28
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Aug 21 23:12:11 CEST 2019
#Thu Jun 06 19:27:58 EDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
4 changes: 2 additions & 2 deletions presentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility 1.8
targetCompatibility 1.8
}

kotlinOptions {
Expand Down

0 comments on commit d221694

Please sign in to comment.