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

Update some dependencies #84

Merged
merged 4 commits into from
Jun 8, 2021
Merged
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
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.android.tools.build:gradle:4.2.1'
}
}

Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ apply plugin: 'com.android.application'
apply plugin: 'com.trello.victor'

android {
compileSdkVersion 29
compileSdkVersion 30

defaultConfig {
applicationId "com.trello.victorsample"
minSdkVersion 15
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -75,5 +75,5 @@ repositories {
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
}
4 changes: 2 additions & 2 deletions sample/build.gradle.kts.example
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ apply(plugin = "com.trello.victor")
val Any.extensions get() = (this as org.gradle.api.plugins.ExtensionAware).extensions

android {
compileSdkVersion(29)
compileSdkVersion(30)

defaultConfig {
applicationId = "com.trello.victorsample"
minSdkVersion(15)
targetSdkVersion(29)
targetSdkVersion(30)
versionCode = 1
versionName = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion victor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {
implementation 'org.apache.xmlgraphics:batik-anim:1.12'
implementation 'org.apache.xmlgraphics:xmlgraphics-commons:2.4'
implementation 'com.romainpiel.svgtoandroid:svgtoandroid:0.1.0'
testImplementation 'junit:junit:4.13'
testImplementation 'junit:junit:4.13.2'
}

// Plugin publishing
Expand Down