Skip to content

Commit 1cb48cc

Browse files
authored
Fixes for updating versions (#19)
1 parent 1e9ed77 commit 1cb48cc

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

lib/build.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ plugins {
99
val VERSION_NAME: String by project
1010

1111
android {
12-
compileSdk = 33
12+
compileSdk = 34
1313

1414
defaultConfig {
1515
multiDexEnabled = true
1616
minSdk = 16
17-
targetSdk = 33
17+
targetSdk = 34
1818

1919
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
2020
consumerProguardFiles("proguard-consumer-rules.pro")
@@ -29,7 +29,6 @@ android {
2929
}
3030
}
3131
compileOptions {
32-
isCoreLibraryDesugaringEnabled = true
3332
sourceCompatibility = JavaVersion.VERSION_1_8
3433
targetCompatibility = JavaVersion.VERSION_1_8
3534
}
@@ -39,12 +38,10 @@ android {
3938
}
4039

4140
dependencies {
42-
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.2")
43-
4441
implementation("com.segment.analytics.kotlin:android:1.16.3")
4542
implementation("androidx.multidex:multidex:2.0.1")
4643

47-
implementation("androidx.core:core-ktx:1.8.0")
44+
implementation("androidx.core:core-ktx:1.13.1")
4845
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
4946

5047
implementation("androidx.lifecycle:lifecycle-process:2.4.1")

lib/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.segment.analytics.kotlin.destinations.amplitude">
4-
4+
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
55
</manifest>

0 commit comments

Comments
 (0)