Skip to content

Commit

Permalink
Fix compilation issues
Browse files Browse the repository at this point in the history
This also deletes the unused time-android module.
  • Loading branch information
vibin authored and saini2sandeep committed May 27, 2022
1 parent 8dbb554 commit 3324ab0
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 92 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
buildscript {
ext.kotlin_version = '1.2.60'
ext.kotlin_version = '1.5.10'

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.palantir:jacoco-coverage:0.4.0'
}
}

Expand All @@ -19,5 +17,3 @@ allprojects {
jcenter()
}
}

apply plugin: 'com.palantir.jacoco-full-report'
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include ':time', ':time-android'
include ':time'
rootProject.name = 'Time'

1 change: 0 additions & 1 deletion time-android/.gitignore

This file was deleted.

38 changes: 0 additions & 38 deletions time-android/build.gradle

This file was deleted.

21 changes: 0 additions & 21 deletions time-android/proguard-rules.pro

This file was deleted.

2 changes: 0 additions & 2 deletions time-android/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions time-android/src/main/res/values/strings.xml

This file was deleted.

6 changes: 2 additions & 4 deletions time/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
apply plugin: 'kotlin'
apply plugin: 'maven'
apply plugin: 'jacoco'

group = 'com.github.kizitonwose'

Expand All @@ -13,8 +11,8 @@ dependencies {
}

compileKotlin {
kotlinOptions.jvmTarget = "1.6"
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.6"
kotlinOptions.jvmTarget = "1.8"
}

0 comments on commit 3324ab0

Please sign in to comment.