Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ dependencies {

// TODO: language processing should be on its own module
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'org.antlr:antlr4-runtime:4.13.2'
// TODO: completion providers should not be included on the main module
implementation project(path: ':code-editor')
Expand Down
2 changes: 1 addition & 1 deletion build-logic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation project(path: ':google-java-format')
implementation project(path: ':ktfmt')

compileOnly 'com.google.code.gson:gson:2.11.0'
compileOnly 'com.google.code.gson:gson:2.13.2'
implementation project(path: ':logging')
implementation project(path: ':manifmerger')
implementation project(path: ':project')
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {

implementation 'androidx.annotation:annotation:1.9.1'
api 'com.google.guava:guava:33.3.0-jre'
compileOnlyApi 'com.google.code.gson:gson:2.11.0'
compileOnlyApi 'com.google.code.gson:gson:2.13.2'
api 'commons-io:commons-io:2.16.1'
api 'net.lingala.zip4j:zip4j:2.11.5'
compileOnly project(path: ':android-stubs')
Expand Down
2 changes: 1 addition & 1 deletion layout-preview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation project(path: ':xml-completion')

implementation 'androidx.annotation:annotation:1.9.1'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'com.github.bumptech.glide:glide:4.16.0'

api project(path: ':proteus-core')
Expand Down
2 changes: 1 addition & 1 deletion project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {

// for manifest parsing
implementation project(path: ':manifmerger')
compileOnly 'com.google.code.gson:gson:2.11.0'
compileOnly 'com.google.code.gson:gson:2.13.2'
// user data holder
implementation project(path: ':kotlinc')
compileOnly project(path: ':android-stubs')
Expand Down