-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed #2652 #5265
Fixed #2652 #5265
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think adding the sdp lib only is sufficient, and there is a newer version, 'com.intuit.sdp:sdp-android:1.1.0', |
||
) | ||
compileOnly( | ||
'jakarta.xml.bind:jakarta.xml.bind-api:2.3.2', | ||
|
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -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" | ||||||||||
Comment on lines
+38
to
+39
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
android:importantForAccessibility="no" | ||||||||||
app:layout_constraintEnd_toEndOf="parent" | ||||||||||
app:layout_constraintStart_toStartOf="parent" | ||||||||||
|
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> | ||
Comment on lines
+4
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is organized according to screen name, kindly add splash screen related dimens under the relevant category, or create one if it does not exist. Please stick to the patterns in the file. Additionally, Your dimensions are in dp, contrary to the fix you proposed in #2652 (comment). Just adding the dependency and not using it does not fix the issue. |
||
<dimen name="activity_horizontal_margin">16dp</dimen> | ||
<dimen name="activity_vertical_margin">16dp</dimen> | ||
<dimen name="match_parent">-2px</dimen> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the comment. All attributions are handled by git when you make a commit with your username.