Skip to content

Commit

Permalink
add kotlinx-serialization dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
akliuxingyuan committed Aug 6, 2024
1 parent 1d1039b commit 6800a4e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
import com.android.build.api.variant.FilterConfiguration
import org.apache.tools.ant.util.StringUtils

buildscript {
repositories {
gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository ->
maven {
url repository
if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) {
allowInsecureProtocol = true
}
}
}
}

dependencies {
classpath ComponentsDependencies.plugin_serialization
}
}

plugins {
id "com.jetbrains.python.envs" version "$python_envs_plugin"
id "com.google.protobuf" version "$protobuf_plugin"
Expand Down

0 comments on commit 6800a4e

Please sign in to comment.