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 13 migration update compile and target sdk versions to 33 #728

Merged
Prev Previous commit
Next Next commit
Remove jcenter
Replace jcenter with mavenCentral and update flipper version with version catalog
  • Loading branch information
ravishanker committed Mar 21, 2023
commit c703232c593d35440d9cb3c2d128ef2bb9e91fa4
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ android {
}

ext {
flipperVersion = '0.50.0'
flipperVersion = '0.138.0'
soloaderVersion = '0.10.3'
}

dependencies {
Expand Down Expand Up @@ -101,7 +102,7 @@ dependencies {
implementation('org.wordpress:utils:trunk-1ed207c03d2242b6fc3d74f9e388e9163cbc82a6')

debugImplementation "com.facebook.flipper:flipper:$flipperVersion"
debugImplementation 'com.facebook.soloader:soloader:0.9.0'
debugImplementation "com.facebook.soloader:soloader:$soloaderVersion"
debugImplementation "com.facebook.flipper:flipper-network-plugin:$flipperVersion"

testImplementation 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pluginManagement {
}
gradlePluginPortal()
google()
jcenter()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
Expand Down