Skip to content
Merged
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: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
dependencies {
classpath 'com.android.tools.build:gradle:9.1.0'
classpath "de.mannodermaus.gradle.plugins:android-junit5:2.0.1"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.59.1"

Check warning on line 11 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Newer Library Versions Available: A newer version of com.google.dagger:hilt-android-gradle-plugin than 2.59.1 is available: 2.59.2
}
}

Expand All @@ -18,14 +18,14 @@
apply plugin: 'checkstyle'

android {
compileSdk 34

Check warning on line 21 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Obsolete Gradle Dependency: A newer version of `compileSdk` than 34 is available: 36

defaultConfig {
testInstrumentationRunnerArguments runnerBuilder: 'de.mannodermaus.junit5.AndroidJUnit5Builder'
testInstrumentationRunnerArguments
applicationId "com.example.myapplication"
minSdk 21
targetSdk 34

Check warning on line 28 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Target SDK attribute is not targeting latest version: Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the `android.os.Build.VERSION_CODES` javadoc for details.
versionCode 1
versionName "1.0"

Expand All @@ -52,7 +52,7 @@
}
lint {
abortOnError false
disable 'UnsafeExperimentalUsageError', 'UnsafeExperimentalUsageWarning'

Check warning on line 55 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Unknown Lint Issue Id: Unknown issue id "UnsafeExperimentalUsageWarning"

Check warning on line 55 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Unknown Lint Issue Id: Unknown issue id "UnsafeExperimentalUsageWarning"

Check warning on line 55 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Unknown Lint Issue Id: Unknown issue id "UnsafeExperimentalUsageError"

Check warning on line 55 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Unknown Lint Issue Id: Unknown issue id "UnsafeExperimentalUsageError"
explainIssues true
htmlOutput file('build/reports/lint/report.html')
showAll true
Expand Down Expand Up @@ -81,16 +81,16 @@
testImplementation platform("org.junit:junit-bom:5.14.3")
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.mockito:mockito-core:5.21.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.21.0"
testImplementation "org.mockito:mockito-core:5.22.0"
testImplementation "org.mockito:mockito-junit-jupiter:5.22.0"

// Instrumentation tests
androidTestImplementation platform("org.junit:junit-bom:5.14.3")
androidTestImplementation "org.junit.jupiter:junit-jupiter-api"
androidTestImplementation "de.mannodermaus.junit5:android-test-core:2.0.1"
androidTestRuntimeOnly "de.mannodermaus.junit5:android-test-runner:2.0.1"
androidTestImplementation "androidx.test:runner:1.7.0"
androidTestImplementation ("org.mockito:mockito-android:5.21.0") {
androidTestImplementation ("org.mockito:mockito-android:5.22.0") {
exclude group: 'net.bytebuddy', module: 'byte-buddy'
exclude group: 'net.bytebuddy', module: 'byte-buddy-agent'
}
Expand Down
Loading