Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android Gradle Plugin (AGP) update #106

Merged
merged 9 commits into from
May 23, 2024
6 changes: 3 additions & 3 deletions GrowthBook/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "1.1.51"
kotlin {

val ktorVersion = "2.1.2"
val serializationVersion = "1.3.2"
val serializationVersion = "1.3.3"
val kryptoVersion = "2.7.0"

android {
Expand Down Expand Up @@ -85,11 +85,11 @@ kotlin {
}

android {
compileSdk = 31
compileSdk = 34
namespace = "com.sdk.growthbook"
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig {
minSdk = 21
targetSdk = 31

consumerProguardFiles("consumer-rules.pro")
}
Expand Down
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {

val kotlinVersion = "1.6.10"
val kotlinVersion = "1.7.0"

repositories {
gradlePluginPortal()
Expand All @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.android.tools.build:gradle:7.0.4")
classpath("com.android.tools.build:gradle:7.4.2")
classpath ("org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion")
}
}
Expand All @@ -29,4 +29,3 @@ tasks.register("clean", Delete::class) {
plugins {
id("org.jetbrains.kotlinx.kover") version "0.5.0"
}

3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Thu May 16 17:55:51 EEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading