Skip to content

Commit 7edb7a6

Browse files
authored
Merge pull request #2 from kgbier/tech/update-dependencies
Tech/update dependencies
2 parents fd8a60a + b5030d2 commit 7edb7a6

10 files changed

Lines changed: 25 additions & 25 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.2.1' apply false
4-
id 'com.android.library' version '7.2.1' apply false
3+
id 'com.android.application' version '7.3.0' apply false
4+
id 'com.android.library' version '7.3.0' apply false
55
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
66
id 'com.vanniktech.maven.publish' version '0.22.0' apply false
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sat Jun 25 08:42:01 AEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

networklogger/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ plugins {
55
}
66

77
android {
8-
compileSdk 32
8+
namespace 'dev.kgbier.util.networklogger'
9+
compileSdk 33
910

1011
defaultConfig {
1112
minSdk 21
12-
targetSdk 32
13+
targetSdk 33
1314

1415
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1516
consumerProguardFiles "consumer-rules.pro"
@@ -27,11 +28,11 @@ dependencies {
2728

2829
implementation 'app.cash.contour:contour:1.1.0'
2930

30-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.3'
31-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
31+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
32+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
3233

33-
implementation 'androidx.core:core-ktx:1.8.0'
34-
implementation 'androidx.appcompat:appcompat:1.4.2'
34+
implementation 'androidx.core:core-ktx:1.9.0'
35+
implementation 'androidx.appcompat:appcompat:1.5.1'
3536
implementation 'androidx.recyclerview:recyclerview:1.2.1'
3637
testImplementation 'junit:junit:4.13.2'
3738
androidTestImplementation 'androidx.test.ext:junit:1.1.3'

networklogger/ktor/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ plugins {
55
}
66

77
android {
8-
compileSdk 32
8+
namespace 'dev.kgbier.util.networklogger.ktor'
9+
compileSdk 33
910

1011
defaultConfig {
1112
minSdk 21
12-
targetSdk 32
13+
targetSdk 33
1314

1415
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1516
consumerProguardFiles "consumer-rules.pro"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="dev.kgbier.util.networklogger.ktor">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
</manifest>

networklogger/okhttp/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ plugins {
55
}
66

77
android {
8-
compileSdk 32
8+
namespace 'dev.kgbier.util.networklogger.okhttp'
9+
compileSdk 33
910

1011
defaultConfig {
1112
minSdk 21
12-
targetSdk 32
13+
targetSdk 33
1314

1415
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1516
consumerProguardFiles "consumer-rules.pro"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="dev.kgbier.util.networklogger.okhttp">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
</manifest>

networklogger/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="dev.kgbier.util.networklogger">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application>
65
<activity

sample/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ plugins {
44
}
55

66
android {
7-
compileSdk 32
7+
namespace 'dev.kgbier.util.networklogger.sample'
8+
compileSdk 33
89

910
defaultConfig {
1011
applicationId "dev.kgbier.util.networklogger.sample"
1112
minSdk 21
12-
targetSdk 32
13+
targetSdk 33
1314
versionCode 1
1415
versionName "1.0"
1516
}
@@ -36,6 +37,6 @@ dependencies {
3637
implementation 'io.ktor:ktor-client-cio:2.0.3'
3738
implementation 'io.ktor:ktor-client-logging:2.0.3'
3839

39-
implementation 'androidx.core:core-ktx:1.8.0'
40-
implementation 'androidx.appcompat:appcompat:1.4.2'
40+
implementation 'androidx.core:core-ktx:1.9.0'
41+
implementation 'androidx.appcompat:appcompat:1.5.1'
4142
}

sample/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="dev.kgbier.util.networklogger.sample">
3+
xmlns:tools="http://schemas.android.com/tools">
54

65
<uses-permission android:name="android.permission.INTERNET" />
76

0 commit comments

Comments
 (0)