Skip to content

Commit

Permalink
Fixed oppia#2652
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyclotron17 committed Dec 10, 2023
1 parent 0f8eb69 commit e7893db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ dependencies {
'androidx.appcompat:appcompat:1.0.2',
'androidx.constraintlayout:constraintlayout:1.1.3',
'androidx.core:core-ktx:1.0.2',
'androidx.legacy:legacy-support-v4:1.0.0',
'androidx.lifecycle:lifecycle-extensions:2.0.0',
'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0-alpha03',
'androidx.navigation:navigation-fragment:2.0.0',
Expand Down Expand Up @@ -180,7 +179,11 @@ dependencies {
'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1',
'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1',
'org.mockito:mockito-core:2.7.22',
'com.github.oppia:android-spotlight:ebde38335bfb56349eae57e705b611ead9addb15'
'com.github.oppia:android-spotlight:ebde38335bfb56349eae57e705b611ead9addb15',

//Sambhrant Tiwari
'com.intuit.ssp:ssp-android:1.0.5',
'com.intuit.sdp:sdp-android:1.0.5'
)
compileOnly(
'jakarta.xml.bind:jakarta.xml.bind-api:2.3.2',
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/splash_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

<ImageView
android:id="@+id/splash_oppia_logo"
android:layout_width="228dp"
android:layout_height="88dp"
android:layout_width="@dimen/width_228dp"
android:layout_height="@dimen/height_88dp"
android:importantForAccessibility="no"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/res/values/dimens.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="width_228dp">228dp</dimen>

<!-- Example dimension for height -->
<dimen name="height_88dp">88dp</dimen>
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="match_parent">-2px</dimen>
Expand Down

0 comments on commit e7893db

Please sign in to comment.