Skip to content

Commit

Permalink
Fixed up Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
VigneshSK17 committed Apr 16, 2024
1 parent c49dd7d commit 2ec6385
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 10 deletions.
15 changes: 14 additions & 1 deletion .idea/deploymentTargetDropDown.xml

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

16 changes: 9 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,25 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation(files("spotify-app-remote-release-0.8.0.aar"))
implementation("androidx.legacy:legacy-support-v4:1.0.0")
implementation("androidx.recyclerview:recyclerview:1.3.0")
implementation("androidx.navigation:navigation-fragment:2.7.6")
implementation("androidx.navigation:navigation-ui:2.7.6")
implementation("androidx.activity:activity:1.8.0")
implementation("androidx.recyclerview:recyclerview:1.3.2")
implementation("androidx.navigation:navigation-fragment:2.7.7")
implementation("androidx.navigation:navigation-ui:2.7.7")
implementation("androidx.activity:activity:1.8.2")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
implementation("androidx.work:work-runtime:2.9.0")

implementation(platform("com.google.firebase:firebase-bom:32.7.3"))

implementation(platform("com.google.firebase:firebase-bom:32.8.1"))
implementation("com.google.firebase:firebase-firestore")
implementation("com.google.firebase:firebase-auth")
implementation("com.firebaseui:firebase-ui-auth:7.2.0")
implementation("com.firebaseui:firebase-ui-auth:8.0.2")

implementation("com.spotify.android:auth:2.1.1")
implementation("com.squareup.okhttp3:okhttp:4.9.3")

implementation("com.google.code.gson:gson:2.8.6")
implementation("com.google.code.gson:gson:2.10.1")
implementation("com.squareup.picasso:picasso:2.8")

}
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void createSignInIntent() {
List<AuthUI.IdpConfig> providers = Arrays.asList(new AuthUI.IdpConfig.EmailBuilder().build());

Intent signInIntent =
AuthUI.getInstance().createSignInIntentBuilder().setAvailableProviders(providers).build();
AuthUI.getInstance().createSignInIntentBuilder().setAvailableProviders(providers).setLogo(R.drawable.unwrappd_white).build();
signInLauncher.launch(signInIntent);
Log.d("Firebase", "Sign in intent launched");
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.3.1" apply false
id("com.android.application") version "8.2.1" apply false


id("com.google.gms.google-services") version "4.4.1" apply false
Expand Down

0 comments on commit 2ec6385

Please sign in to comment.