Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
q-litzler committed Dec 3, 2019
1 parent c873c5e commit 11d4b50
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'com.android.tools.build:gradle:3.5.2'
classpath "com.github.ben-manes:gradle-versions-plugin:$benManes"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlins"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:$dokka"
Expand Down
14 changes: 7 additions & 7 deletions dependency.gradle
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
ext.with {
algolia_client = '3.23.13'
appcompat = '1.0.0'
appcompat = '1.1.0'
benManes = '0.20.0'
constraintLayout = '1.1.2'
constraintLayout = '1.1.3'
dokka = '0.9.17'
espresso = '3.2.0'
glide = '4.8.0'
sdkCompile = 28
sdkCompile = 29
sdkMin = 14
sdkTarget = 28
kotlins = '1.3.31'
sdkTarget = 29
kotlins = '1.3.61'
codeVersion = 1
versionName = '1.0'
insights = '3.0.0-alpha03'
insights = '3.0.0'
json = '20180813'
stetho = '1.5.0'
bintray = '1.8.4'
maven = '2.1'
workmanager = '2.1.0-alpha03'
workmanager = '2.2.0'
junitext = '1.1.1'
runner = '1.2.0'

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 @@
#Fri May 31 11:38:09 CEST 2019
#Tue Dec 03 15:04:07 CET 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
11 changes: 8 additions & 3 deletions insights/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ ext {
REPO = WEBSITE + ".git"
LICENSE = 'MIT'
LICENSE_URL = "http://www.opensource.org/licenses/mit-license.php"
VERSION = '3.0.0-alpha03'
VERSION = '3.0.0'
VERSION_DESC = 'Version ' + VERSION

VERSION_APPCOMPAT = '28.0.0'
}

group = project.ext.GROUP
Expand Down Expand Up @@ -58,6 +56,13 @@ android {
test.java.srcDirs += "src/test/kotlin"
androidTest.java.srcDirs += "src/androidTest/kotlin"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}

testOptions {
unitTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal class EventUploaderWorkManager(private val context: Context) : EventUpl

WorkManager
.getInstance(context)
.beginUniqueWork(EventUploaderWorkManager.WorkerName.OneTimeUpload.name, ExistingWorkPolicy.KEEP, worker)
.beginUniqueWork(WorkerName.OneTimeUpload.name, ExistingWorkPolicy.KEEP, worker)
.enqueue()
}
}

0 comments on commit 11d4b50

Please sign in to comment.