Skip to content

Commit

Permalink
Libs Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AkosPaha01 committed May 9, 2022
1 parent ce57d14 commit b53fecc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/buildCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@ jobs:
app/build/outputs/apk/release/output-metadata.json
- name: Send Telegram message
if: steps.extract_branch.outputs.BRANCH_NAME == 'rCompatible-Dev'
run: "curl --location --request POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' --header 'Content-Type:application/json' --data-raw '{\"chat_id\":\"${{ secrets.TELEGRAM_CHANNEL_ID }}\",\"text\":\"**${{ steps.extract_branch.outputs.BRANCH_NAME }}**\\n\\ncommit: `${{ github.event.head_commit.message }}` [${{ github.event.head_commit.id }}](${{ github.event.head_commit.url }})\"}}'"

- name: Send Telegram message
if: steps.extract_branch.outputs.BRANCH_NAME == 'rCompatible'
run: "curl --location --request POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' --header 'Content-Type:application/json' --data-raw '{\"chat_id\":\"${{ secrets.TELEGRAM_CHANNEL_ID }}\",\"text\":\"**${{ steps.extract_branch.outputs.BRANCH_NAME }}**\\n\\ncommit: `${{ github.event.head_commit.message }}` [${{ github.event.head_commit.id }}](${{ github.event.head_commit.url }})\",\"parse_mode\":\"markdown\",\"reply_markup\":{\"inline_keyboard\":[[{\"text\":\"Download A6+\",\"url\":\"https://github.com/DerTyp7214/RboardThemeManagerV3/releases/download/latest-rCompatible/app-release.apk\"}]]}}'"

- name: Send Telegram message
Expand Down
18 changes: 9 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ android {

dependencies {
implementation(platform("com.google.firebase:firebase-bom:29.3.1"))
implementation("com.google.firebase:firebase-messaging-ktx:23.0.3")
implementation("com.google.firebase:firebase-analytics-ktx:20.1.2")
implementation("com.google.firebase:firebase-messaging-ktx:23.0.4")
implementation("com.google.firebase:firebase-analytics-ktx:21.0.0")

implementation("androidx.legacy:legacy-support-v4:1.0.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.5.0-beta01")
Expand All @@ -112,18 +112,18 @@ dependencies {
implementation("androidx.activity:activity-ktx:1.5.0-beta01")
implementation("androidx.fragment:fragment-ktx:1.5.0-beta01")
implementation("com.jaredrummler:android-shell:1.0.0")
implementation("com.google.firebase:firebase-analytics:20.1.2")
implementation("com.google.firebase:firebase-messaging:23.0.3")
implementation("com.google.firebase:firebase-analytics:21.0.0")
implementation("com.google.firebase:firebase-messaging:23.0.4")
implementation("com.google.code.gson:gson:2.9.0")
implementation("com.bignerdranch.android:simple-item-decoration:1.0.0")
implementation("de.dertyp7214:PRDownloader:v0.6.0")
implementation("com.github.skydoves:balloon:1.4.5-SNAPSHOT")
implementation("com.github.skydoves:balloon:1.4.6-SNAPSHOT")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.4-alpha05")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0-alpha05")
androidTestImplementation("androidx.test.ext:junit:1.1.4-alpha06")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0-alpha06")
implementation("androidx.browser:browser:1.4.0")
implementation("com.github.bumptech.glide:glide:4.13.1")
kapt("com.github.bumptech.glide:compiler:4.13.1")
implementation("com.github.bumptech.glide:glide:4.13.2")
kapt("com.github.bumptech.glide:compiler:4.13.2")
implementation("de.dertyp7214:PreferencesPlus:1.1")
implementation("com.github.murgupluoglu:flagkit-android:1.0.2")
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))
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 @@
#Tue Dec 07 07:49:33 CET 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-7.6-20220426124046+0000-all.zip
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-7.6-20220506221645+0000-all.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit b53fecc

Please sign in to comment.