Skip to content

Commit

Permalink
Libsu, Gradle and Dependencies Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AkosPaha01 committed Jan 9, 2023
1 parent 2e199b2 commit 5b60e40
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/buildCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
if: ${{ false }}
with:
path: |
Expand All @@ -46,7 +46,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
${{ github.workspace }}/.ccache
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
if: ${{ false }}
with:
path: |
Expand All @@ -174,7 +174,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
${{ github.workspace }}/.ccache
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
if: ${{ false }}
with:
path: |
Expand All @@ -304,7 +304,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
${{ github.workspace }}/.ccache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildPro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
~/.gradle/caches
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
~/.gradle/caches
Expand All @@ -35,7 +35,7 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Cache build cache
uses: actions/cache@v3.0.11
uses: actions/cache@v3.2.2
with:
path: |
${{ github.workspace }}/.ccache
Expand Down
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
kotlin("kapt")
}

val libsuVersion = "5.0.3"
val libsuVersion = "5.0.4"
val kotlinVersion: String = project.getKotlinPluginVersion()

@Suppress("UnstableApiUsage")
Expand Down Expand Up @@ -91,30 +91,30 @@ dependencies {
implementation("dev.chrisbanes.insetter:insetter:0.6.1")
implementation("androidx.core:core-ktx:1.9.0")
//noinspection DifferentStdlibGradleVersion
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0-RC2")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0")
implementation("androidx.core:core:1.9.0")
implementation("com.google.android.material:material:1.8.0-beta01")
implementation("com.google.android.material:material:1.8.0-rc01")
implementation("androidx.constraintlayout:constraintlayout:2.2.0-alpha05")
implementation("androidx.preference:preference-ktx:1.2.0")
implementation("androidx.activity:activity-ktx:1.7.0-alpha02")
implementation("androidx.fragment:fragment-ktx:1.6.0-alpha04")
implementation("com.jaredrummler:android-shell:1.0.0")
implementation("com.google.firebase:firebase-analytics:21.2.0")
implementation("com.google.firebase:firebase-messaging:23.1.1")
implementation("com.google.code.gson:gson:2.10")
implementation("com.google.code.gson:gson:2.10.1")
implementation("com.bignerdranch.android:simple-item-decoration:1.0.0")
implementation("de.dertyp7214:PRDownloader:v0.6.0")
implementation("com.github.skydoves:balloon:1.4.9-SNAPSHOT")
implementation("com.github.skydoves:balloon:1.5.3-SNAPSHOT")
implementation("androidx.appcompat:appcompat:1.7.0-alpha01")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.4")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
implementation("androidx.browser:browser:1.4.0")
implementation("com.github.bumptech.glide:glide:4.14.2")
kapt("com.github.bumptech.glide:compiler:4.14.2")
implementation("com.github.murgupluoglu:flagkit-android:1.0.2")
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))

debugImplementation("androidx.compose.ui:ui-tooling:1.4.0-alpha03")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.0-RC2")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.0")
}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ buildscript {
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
classpath("com.android.tools.build:gradle:8.0.0-alpha09")
classpath("com.android.tools.build:gradle:8.0.0-alpha11")
//noinspection DifferentKotlinGradleVersion
classpath(kotlin("gradle-plugin", version = "1.8.0-RC2"))
classpath(kotlin("gradle-plugin", version = "1.8.0"))
classpath("com.google.gms:google-services:4.3.14")
//classpath("com.google.protobuf:protobuf-gradle-plugin:0.9.1")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Oct 28 17:49:00 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.1-20221218232138+0000-all.zip
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.1-20230107231428+0000-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5b60e40

Please sign in to comment.