Skip to content

Commit

Permalink
Update library versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Aug 11, 2023
1 parent 19ddae0 commit c257e8a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
37 changes: 18 additions & 19 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
dependencies {
classpath "gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:2.1.0"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.20.0-RC1"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.22.0"
classpath "com.dicedmelon.gradle:jacoco-android:0.1.5"
}
}
Expand All @@ -32,7 +32,7 @@ jacoco {
toolVersion = "0.8.8"
}

tasks.withType(Test) {
tasks.withType(Test).configureEach {
jacoco.includeNoLocationClasses = true
jacoco.excludes = ['jdk.internal.*']
}
Expand Down Expand Up @@ -77,8 +77,6 @@ repositories {
}

android {
compileSdkVersion 33
buildToolsVersion '33.0.0'
sourceSets {
main {

Expand All @@ -91,6 +89,7 @@ android {
applicationId "io.stormbird.wallet"
minSdkVersion 24
targetSdkVersion 32
compileSdk 33
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
testInstrumentationRunnerArguments clearPackageData: 'true'
def XInfuraAPI = "XInfuraAPI"
Expand Down Expand Up @@ -130,7 +129,7 @@ android {
}
}
}
flavorDimensions "targetting"
flavorDimensions.add("targetting")

productFlavors {
analytics {
Expand Down Expand Up @@ -264,13 +263,13 @@ dependencies {
//implementation "org.web3j:core:4.8.8-android"
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.aar'], dir: 'libs')
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
implementation 'org.slf4j:slf4j-api:2.0.0-alpha7'
implementation 'com.fasterxml.jackson.core:jackson-core:2.15.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation 'org.slf4j:slf4j-api:2.0.7'

// Http client
implementation "com.squareup.okhttp3:okhttp:4.9.0"
implementation 'com.google.code.gson:gson:2.9.0'
implementation "com.squareup.okhttp3:okhttp:4.11.0"
implementation 'com.google.code.gson:gson:2.10.1'
implementation "com.squareup.picasso:picasso:2.71828"
//noinspection GradleDependency
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1' //This cannot be updated until minSdkVersion is 31.
Expand Down Expand Up @@ -326,17 +325,17 @@ dependencies {
testImplementation group: 'org.powermock', name: 'powermock-module-junit4-rule-agent', version: '2.0.9'
testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.9'
testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9'
testImplementation group: 'org.json', name: 'json', version: '20220320'
testImplementation group: 'org.json', name: 'json', version: '20230618'

// Component tests
testImplementation 'org.robolectric:robolectric:4.8.2'
testImplementation 'androidx.test:core:1.4.0'
testImplementation 'androidx.test.ext:junit:1.1.3'
testImplementation 'androidx.test:core:1.5.0'
testImplementation 'androidx.test.ext:junit:1.1.5'

// E2e tests
androidTestImplementation 'androidx.test:runner:1.5.0-alpha02'
androidTestImplementation 'androidx.test:core:1.4.1-alpha05'
androidTestUtil 'androidx.test:orchestrator:1.4.2-alpha02'
androidTestImplementation 'androidx.test:runner:1.6.0-alpha03'
androidTestImplementation 'androidx.test:core:1.6.0-alpha01'
androidTestUtil 'androidx.test:orchestrator:1.5.0-alpha01'
testImplementation 'org.hamcrest:hamcrest:2.1'

androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
Expand Down Expand Up @@ -366,7 +365,7 @@ dependencies {
//Timber
implementation 'com.jakewharton.timber:timber:5.0.1'

implementation 'com.walletconnect:android-bom:1.13.1'
implementation platform('com.walletconnect:android-bom:1.13.1')
implementation('com.walletconnect:web3wallet:1.10.0', {
exclude group: 'org.web3j', module: '*'
})
Expand All @@ -379,9 +378,9 @@ dependencies {

//Analytics
analyticsImplementation 'com.google.android.play:core:1.10.3'
analyticsImplementation 'com.google.firebase:firebase-analytics:21.1.1'
analyticsImplementation 'com.google.firebase:firebase-analytics:21.3.0'
analyticsImplementation 'com.mixpanel.android:mixpanel-android:5.8.4'
analyticsImplementation 'com.google.firebase:firebase-crashlytics:18.2.13'
analyticsImplementation 'com.google.firebase:firebase-crashlytics:18.4.0'

// Notifications
implementation 'com.google.firebase:firebase-messaging:21.1.0'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ buildscript {
// WARNING WARNING WARNING
// you are about to add here a dependency to be used in the Android app
// don't do that. add that dependency to app/build.gradle
classpath 'com.google.gms:google-services:4.3.14'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.8'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.40.5'
}
}
Expand Down

0 comments on commit c257e8a

Please sign in to comment.