Skip to content

Commit

Permalink
Update Google Services and Firebase
Browse files Browse the repository at this point in the history
- Add Firebase Analytics lib
  • Loading branch information
aschober committed Feb 18, 2024
1 parent cc965ed commit 5d0f149
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ dependencies {
* product flavor: playstore
*/
playstoreApi 'com.google.android.play:core:1.10.3'
playstoreImplementation 'com.google.firebase:firebase-crashlytics-ndk:18.6.1'
playstoreImplementation platform('com.google.firebase:firebase-bom:32.7.2')
playstoreImplementation 'com.google.firebase:firebase-crashlytics-ndk'
playstoreImplementation 'com.google.firebase:firebase-analytics'
/*
* Test
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import tech.schober.vinylcast.VinylCastService;

public abstract class VinylCastActivity extends AppCompatActivity implements ServiceConnection {
private static final String TAG = "VinyCastActivity";
private static final String TAG = "VinylCastActivity";

private boolean serviceBound = false;
protected VinylCastService.VinylCastBinder binder = null;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.google.gms:google-services:4.4.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'org.ajoberstar.grgit:grgit-gradle:5.2.1'
// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 5d0f149

Please sign in to comment.