-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Project to use Gradle 8.4, AGP 8.2.0, Fix Detekt Foundings, an…
…d uses version catalog (#14) * Update Project to use Gradle 8.4, AGP 8.2.0, and uses version catalog * set jvmtoolchain to 11 * Revert "set jvmtoolchain to 11" This reverts commit 35747cb. * change the build pipeline to use java 17 * fix codesmell and update some rules on detekt
- Loading branch information
Showing
21 changed files
with
154 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
# Project-wide Gradle settings. | ||
# IDE (e.g. Android Studio) users: | ||
# Gradle settings configured through the IDE *will override* | ||
# any settings specified in this file. | ||
# For more details on how to configure your build environment visit | ||
# http://www.gradle.org/docs/current/userguide/build_environment.html | ||
# Specifies the JVM arguments used for the daemon process. | ||
# The setting is particularly useful for tweaking memory settings. | ||
org.gradle.jvmargs=-Xmx1536m | ||
# When configured, Gradle will run in incubating parallel mode. | ||
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
# AndroidX package structure to make it clearer which packages are bundled with the | ||
# Android operating system, and which are packaged with your app's APK | ||
# https://developer.android.com/topic/libraries/support-library/androidx-rn | ||
org.gradle.jvmargs=-Xmx5g -Dfile.encoding=UTF-8 | ||
android.useAndroidX=true | ||
# Automatically convert third-party libraries to use AndroidX | ||
android.enableJetifier=false | ||
# Kotlin code style for this project: "official" or "obsolete": | ||
kotlin.code.style=official | ||
# Declare versions | ||
agp_version=7.0.2 | ||
kotlin_version=1.6.10 | ||
compilesdk_version=31 | ||
buildtools_version=30.0.2 | ||
minsdk_version=14 | ||
targetsdk_version=31 | ||
project_version=0.6.0 | ||
project_version_code=600 | ||
compilesdk_version=34 | ||
minsdk_version=16 | ||
project_version=0.7.0 | ||
project_version_code=700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[versions] | ||
agp = "8.2.0" | ||
appcompat = "1.6.1" | ||
constraintlayout = "2.1.4" | ||
core-ktx = "1.12.0" | ||
detekt = "1.23.4" | ||
espresso-core = "3.5.1" | ||
fuel = "2.3.1" | ||
junit = "4.13.2" | ||
kotlin = "1.9.21" | ||
kotlinx-coroutines-core = "1.7.3" | ||
material = "1.11.0" | ||
mockito-core = "5.3.1" | ||
ktlint = "1.0.1" | ||
ktor = "2.3.7" | ||
retrofit = "2.9.0" | ||
robolectric = "4.7.3" | ||
runner = "1.5.2" | ||
spotless = "6.23.3" | ||
truth = "1.1.3" | ||
|
||
[libraries] | ||
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" } | ||
constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" } | ||
core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" } | ||
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" } | ||
espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso-core" } | ||
fuel = { module = "com.github.kittinunf.fuel:fuel", version.ref = "fuel" } | ||
junit = { module = "junit:junit", version.ref = "junit" } | ||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines-core" } | ||
material = { module = "com.google.android.material:material", version.ref = "material" } | ||
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito-core" } | ||
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } | ||
robolectric = { module = "org.robolectric:robolectric", version.ref = "robolectric" } | ||
runner = { module = "androidx.test:runner", version.ref = "runner" } | ||
truth = { module = "com.google.truth:truth", version.ref = "truth" } | ||
|
||
[plugins] | ||
android-application = { id = "com.android.application", version.ref = "agp" } | ||
android-library = { id = "com.android.library", version.ref = "agp" } | ||
android-lint = { id = "com.android.lint", version.ref = "agp" } | ||
android-test = { id = "com.android.test", version.ref = "agp" } | ||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } | ||
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" } | ||
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'kotlin-android' | ||
plugins { | ||
alias libs.plugins.android.library | ||
alias libs.plugins.kotlin.android | ||
} | ||
apply from: '../reportings.gradle' | ||
|
||
group 'com.github.muhrifqii.ParseRSS' | ||
|
||
java { | ||
toolchain { | ||
languageVersion.set(JavaLanguageVersion.of(17)) | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion compilesdk_version as int | ||
compileSdk compilesdk_version as int | ||
namespace 'com.github.muhrifqii.ParseRSS' | ||
//noinspection GradleDependency | ||
buildToolsVersion buildtools_version | ||
defaultConfig { | ||
minSdkVersion minsdk_version | ||
targetSdkVersion targetsdk_version | ||
versionCode project_version_code as int | ||
versionName project_version | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" | ||
|
||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'org.robolectric:robolectric:4.7.3' | ||
testImplementation 'org.mockito:mockito-core:4.4.0' | ||
testImplementation 'com.google.truth:truth:1.1.3' | ||
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1" | ||
testImplementation libs.junit | ||
testImplementation libs.robolectric | ||
testImplementation libs.mockito.core | ||
testImplementation libs.truth | ||
testImplementation libs.kotlinx.coroutines.core | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.