Skip to content

Commit

Permalink
Fix codebase and bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaaatt committed Oct 4, 2023
1 parent 072da3b commit c720779
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 24 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: ListenBrainz CI
name: MusicBrainz CI

on:
push:
branches: [ main, dev, beta ]
branches: [ main, dev ]
pull_request:
branches: [ main, dev, beta ]
branches: [ main, dev ]

jobs:
build:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/attach-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,11 @@ jobs:
echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> keystore.properties
echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> keystore.properties
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties
echo "sentryDsn=$SENTRY_DSN" >> keystore.properties
echo "youtubeApiKey=$YOUTUBE_API_KEY" >> keystore.properties
echo "spotifyClientId=$SPOTIFY_CLIENT_ID" >> keystore.properties
env:
ANDROID_KEYSTORE_FILE: ${{ secrets.ANDROID_KEYSTORE_FILE }}
KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
YOUTUBE_API_KEY: ${{ secrets.YOUTUBE_API_KEY }}
SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }}

- name: Cache Gradle dependencies
uses: actions/cache@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/releaseBeta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Configure Keystore
run: |
echo "$ANDROID_KEYSTORE_FILE" > keystore.jks.b64
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/releaseProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Configure Keystore
run: |
echo "$ANDROID_KEYSTORE_FILE" > keystore.jks.b64
Expand Down
5 changes: 0 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ android {
resources.srcDirs += [sharedTestResourcesDir]
}
}
lint {
abortOnError false
disable 'MissingTranslation'
}
composeOptions {
kotlinCompilerExtensionVersion '1.4.6'
}
Expand All @@ -88,7 +84,6 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.core:core-ktx:1.10.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'androidx.browser:browser:1.5.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/res/values-de(?!-rde)/strings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions app/src/main/res/values-hi(?!-rhi)/strings.xml

This file was deleted.

1 change: 0 additions & 1 deletion app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@
<string name="directory_path_label">文件夹路径</string>
<string name="select_button">选择</string>
<string name="up_button">向上</string>
<string name="settings_language">语言</string>
<string name="settings_use_language">只使用英语</string>
<string name="settings_use_language_summary">本选项将忽略系统语言配置,并仅以英文显示所有用户界面。</string>

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit c720779

Please sign in to comment.