Skip to content

Commit

Permalink
Update for test
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Mar 10, 2024
1 parent f050cc4 commit 02551a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ jobs:
PR_NUMBER: ${{ github.event.number }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew report -PgithubPullRequestId=$PR_NUMBER -PgithubToken=$GITHUB_TOKEN
./gradlew report --no-configuration-cache -PgithubPullRequestId=$PR_NUMBER -PgithubToken=$GITHUB_TOKEN
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ detekt {
}

android_lint_reporter {
//lintFilePath = "./build/reports/lint-results-analyticsDebug.xml"
lintFilePath = "./build/reports/lint-results-analyticsDebug.xml"
detektFilePath = "./build/reports/detekt/detekt.xml"
githubOwner = "AlphaWallet"
githubRepositoryName = "alpha-wallet-android"
Expand Down Expand Up @@ -220,7 +220,7 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.aar'], dir: 'libs')
//NB: Downgrade jackson due to bug in 2.15 releases that makes it incompatible with Gradle 8
//noinspection GradleDependency
//noinspection UseTomlInstead,GradleDependency
implementation platform('com.fasterxml.jackson:jackson-bom:2.13.5') //Don't upgrade from 2.13.5 due to Android API24 compatibility
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
Expand Down Expand Up @@ -323,7 +323,7 @@ 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: '20240303'
testImplementation group: 'org.json', name: 'json', version: '20220320'

// Component tests: Updating these appears to break the tests.
testImplementation 'org.robolectric:robolectric:4.8.2'
Expand Down
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<application
android:name=".App"
android:allowBackup="false"
android:extractNativeLibs="true"
android:hardwareAccelerated="false"
android:largeHeap="true"
android:icon="@mipmap/ic_launcher"
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true
android.enableJetifier=true
android.jetifier.ignorelist=bcprov-jdk15on,bcprov-jdk18on,com.squareup.moshi
org.gradle.configuration-cache=true

# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
Expand Down

0 comments on commit 02551a2

Please sign in to comment.