Skip to content

Commit 22fed49

Browse files
committed
Play-core 1.10.2
1 parent dabbd92 commit 22fed49

8 files changed

Lines changed: 15 additions & 36 deletions

File tree

.idea/runConfigurations.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

appupdatewrapper/build.gradle

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ android {
4242
versionName versionName
4343

4444
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
45-
46-
javaCompileOptions {
47-
annotationProcessorOptions {
48-
includeCompileClasspath false
49-
}
50-
}
5145
}
5246

5347
buildTypes {
@@ -67,15 +61,15 @@ dependencies {
6761

6862
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6963

70-
api 'androidx.core:core-ktx:1.6.0-beta01'
64+
api 'androidx.core:core-ktx:1.6.0'
7165
kapt 'androidx.lifecycle:lifecycle-common-java8:2.3.1'
72-
api 'com.google.android.play:core:1.10.0'
66+
api 'com.google.android.play:core:1.10.2'
7367

74-
implementation 'com.jakewharton.timber:timber:4.7.1'
68+
implementation 'com.jakewharton.timber:timber:5.0.1'
7569

7670
testImplementation project(":testapp")
77-
testImplementation 'androidx.test:core:1.3.0'
78-
testImplementation 'androidx.test.ext:junit:1.1.2'
71+
testImplementation 'androidx.test:core:1.4.0'
72+
testImplementation 'androidx.test.ext:junit:1.1.3'
7973
testImplementation 'junit:junit:4.13.2'
8074
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
8175
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0'

appupdatewrapper/src/test/java/com/motorro/appupdatewrapper/LogUtilsKtTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class LogUtilsKtTest: TestAppTest() {
4444
class Test: Tagged {
4545
override fun getTagPrefix(): String = "Internal"
4646
}
47-
assertEquals("$LIBRARY_LOG_PREFIX:Internal:createsLoggingTag\$Test", Test().getTag())
47+
assertEquals("$LIBRARY_LOG_PREFIX:Internal:Test", Test().getTag())
4848
}
4949

5050
@Test

appupdatewrapper/src/test/java/com/motorro/appupdatewrapper/TestAppTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ open class TestAppTest{
3535
@JvmStatic
3636
fun installTimber() {
3737
// Just to test we don't crash in logging
38-
if (0 == Timber.treeCount()) {
38+
if (0 == Timber.treeCount) {
3939
Timber.plant(Timber.DebugTree())
4040
}
4141
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply from: 'gradle/maven-publish-config.gradle'
44
apply plugin: 'io.github.gradle-nexus.publish-plugin'
55

66
buildscript {
7-
ext.kotlin_version = '1.5.10'
7+
ext.kotlin_version = '1.5.31'
88
ext.dokka_version = '1.4.32'
99
repositories {
1010
google()
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222
}
2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:4.2.1'
24+
classpath 'com.android.tools.build:gradle:7.0.2'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2626
classpath 'org.ajoberstar.grgit:grgit-gradle:3.0.0'
2727
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

sample/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ android {
4545
dependencies {
4646
implementation project(":appupdatewrapper")
4747
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
48-
implementation 'androidx.core:core-ktx:1.5.0'
49-
implementation 'androidx.appcompat:appcompat:1.3.0'
50-
implementation 'com.google.android.material:material:1.3.0'
51-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
48+
implementation 'androidx.core:core-ktx:1.6.0'
49+
implementation 'androidx.appcompat:appcompat:1.3.1'
50+
implementation 'com.google.android.material:material:1.4.0'
51+
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
5252
}

testapp/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,12 @@ android {
2323
defaultConfig {
2424
minSdkVersion androidMinSdkVersion
2525
targetSdkVersion androidTargetSdkVersion
26-
versionCode versionCode
27-
versionName versionName
2826

2927
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3028
}
3129
}
3230

3331
dependencies {
3432
implementation project(":appupdatewrapper")
35-
api 'androidx.appcompat:appcompat:1.3.0'
33+
api 'androidx.appcompat:appcompat:1.3.1'
3634
}

0 commit comments

Comments
 (0)