Skip to content
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
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath 'com.android.tools.build:gradle:9.0.0'
classpath "de.mannodermaus.gradle.plugins:android-junit5:2.0.1"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.59"
}
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 All @@ -78,7 +78,7 @@
implementation 'androidx.test:core:1.7.0'

// Unit tests
testImplementation platform("org.junit:junit-bom:5.14.2")

Check warning on line 81 in app/build.gradle

View workflow job for this annotation

GitHub Actions / build

Newer Library Versions Available: A newer version of org.junit:junit-bom than 5.14.2 is available: 6.0.2
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.mockito:mockito-core:5.21.0"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath 'com.android.tools.build:gradle:9.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
Loading