diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml deleted file mode 100644 index 6d219735..00000000 --- a/.idea/deploymentTargetDropDown.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index a25fc958..f764f349 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -130,4 +130,7 @@ dependencies { //OSS Licenses Gradle Plugin implementation 'com.google.android.gms:play-services-oss-licenses:17.0.1' + // Realtime BlurView + implementation 'com.github.mmin18:realtimeblurview:master-SNAPSHOT' + } diff --git a/app/src/main/res/drawable/bg_score_board.xml b/app/src/main/res/drawable/bg_score_board.xml deleted file mode 100644 index ceebb1e3..00000000 --- a/app/src/main/res/drawable/bg_score_board.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/activity_home.xml b/app/src/main/res/layout/activity_home.xml index 14e66bfb..4996ea1a 100644 --- a/app/src/main/res/layout/activity_home.xml +++ b/app/src/main/res/layout/activity_home.xml @@ -57,19 +57,24 @@ - + app:layout_constraintTop_toTopOf="@id/cl_score_board"> + + + + @@ -91,6 +93,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="20dp" + android:paddingTop="20dp" android:text="@string/home_couple_score" android:textColor="@color/Gray_000" app:layout_constraintStart_toStartOf="parent" @@ -143,6 +146,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="16dp" + android:paddingBottom="20dp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/ll_game_history"> diff --git a/build.gradle b/build.gradle index b1b127f9..c8f0bc9a 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,7 @@ buildscript { gradlePluginPortal() google() mavenCentral() + maven { url 'https://jitpack.io' } } ext { hiltVersion = "2.44" @@ -21,4 +22,5 @@ plugins { id 'com.android.library' version '8.0.2' apply false id 'org.jetbrains.kotlin.android' version '1.8.20' apply false id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false -} \ No newline at end of file +} + diff --git a/settings.gradle b/settings.gradle index f5751f37..3bfdec9e 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,6 +11,9 @@ dependencyResolutionManagement { google() mavenCentral() maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/' } + maven { + url = uri('https://jitpack.io') + } } } rootProject.name = "UNI-AOS"