Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 07d8aac

Browse files
committedMar 4, 2025··
Remove unnecessary SDK checks
1 parent 4b7b4c8 commit 07d8aac

File tree

6 files changed

+6
-18
lines changed

6 files changed

+6
-18
lines changed
 

‎lib/java/com/google/android/material/transition/platform/MaterialContainerTransformSharedElementCallback.java

-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@
2828
import android.graphics.Rect;
2929
import android.graphics.RectF;
3030
import android.graphics.drawable.Drawable;
31-
import android.os.Build.VERSION_CODES;
3231
import android.os.Parcelable;
3332
import android.transition.Transition;
3433
import android.view.View;
3534
import android.view.View.MeasureSpec;
3635
import android.view.Window;
3736
import androidx.annotation.NonNull;
3837
import androidx.annotation.Nullable;
39-
import androidx.annotation.RequiresApi;
4038
import androidx.core.graphics.BlendModeColorFilterCompat;
4139
import androidx.core.graphics.BlendModeCompat;
4240
import com.google.android.material.internal.ContextUtils;
@@ -49,7 +47,6 @@
4947
/**
5048
* A {@link SharedElementCallback} to be used for {@link MaterialContainerTransform} transitions.
5149
*/
52-
@RequiresApi(VERSION_CODES.LOLLIPOP)
5350
public class MaterialContainerTransformSharedElementCallback extends SharedElementCallback {
5451

5552
@Nullable private static WeakReference<View> capturedSharedElement;

‎lib/javatests/com/google/android/material/internal/StaticLayoutBuilderCompatTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package com.google.android.material.internal;
1818

19-
import static android.os.Build.VERSION_CODES.LOLLIPOP;
2019
import static com.google.common.truth.Truth.assertThat;
2120

2221
import android.os.Build.VERSION_CODES;
@@ -40,7 +39,7 @@ public class StaticLayoutBuilderCompatTest {
4039
+ "Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, "
4140
+ "vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a";
4241

43-
@Config(minSdk = LOLLIPOP, maxSdk = VERSION_CODES.P)
42+
@Config(maxSdk = VERSION_CODES.P)
4443
@Test
4544
public void createStaticLayout_withMaxLines_LongString() throws Exception {
4645
int maxLines = 3;

‎lib/javatests/com/google/android/material/motion/MotionUtilsTest.java

-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import android.view.animation.Interpolator;
3131
import android.view.animation.LinearInterpolator;
3232
import android.view.animation.PathInterpolator;
33-
import androidx.annotation.RequiresApi;
3433
import androidx.core.content.res.ResourcesCompat;
3534
import androidx.dynamicanimation.animation.SpringForce;
3635
import androidx.test.core.app.ApplicationProvider;
@@ -48,7 +47,6 @@
4847
@RunWith(RobolectricTestRunner.class)
4948
@Config(sdk = VERSION_CODES.LOLLIPOP)
5049
@DoNotInstrument
51-
@RequiresApi(api = VERSION_CODES.LOLLIPOP)
5250
public class MotionUtilsTest {
5351

5452
private ActivityController<AppCompatActivity> activityController;

‎lib/javatests/com/google/android/material/sidesheet/res/layout/test_coplanar_side_sheet.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
-->
1717
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
1818
xmlns:app="http://schemas.android.com/apk/res-auto"
19-
xmlns:tools="http://schemas.android.com/tools"
2019
android:id="@+id/test_coordinator_layout"
2120
android:layout_width="match_parent"
2221
android:layout_height="match_parent"
@@ -38,8 +37,7 @@
3837
android:layout_width="256dp"
3938
android:layout_height="match_parent"
4039
android:orientation="vertical"
41-
app:layout_behavior="@string/side_sheet_behavior"
42-
tools:targetApi="lollipop">
40+
app:layout_behavior="@string/side_sheet_behavior">
4341
<TextView
4442
android:layout_width="wrap_content"
4543
android:layout_height="match_parent"

‎lib/javatests/com/google/android/material/sidesheet/res/layout/test_side_sheet.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
-->
1717
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
1818
xmlns:app="http://schemas.android.com/apk/res-auto"
19-
xmlns:tools="http://schemas.android.com/tools"
2019
android:id="@+id/test_coordinator_layout"
2120
android:layout_width="match_parent"
2221
android:layout_height="match_parent"
@@ -28,8 +27,7 @@
2827
android:layout_width="256dp"
2928
android:layout_height="match_parent"
3029
android:orientation="vertical"
31-
app:layout_behavior="@string/side_sheet_behavior"
32-
tools:targetApi="lollipop">
30+
app:layout_behavior="@string/side_sheet_behavior">
3331
<TextView
3432
android:layout_width="wrap_content"
3533
android:layout_height="match_parent"

‎testing/java/com/google/android/material/testapp/res/values/styles.xml

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
-->
16-
<resources xmlns:tools="http://schemas.android.com/tools">
16+
<resources>
1717

1818
<style name="TextSmallStyle" parent="@android:style/TextAppearance">
1919
<item name="android:textSize">@dimen/text_small_size</item>
@@ -28,15 +28,13 @@
2828
</style>
2929

3030
<style name="Theme.TranslucentStatus"
31-
parent="Theme.AppCompat.Light.NoActionBar"
32-
tools:targetApi="lollipop">
31+
parent="Theme.AppCompat.Light.NoActionBar">
3332
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
3433
<item name="android:statusBarColor">@android:color/transparent</item>
3534
</style>
3635

3736
<style name="Theme.TranslucentNavBar"
38-
parent="Theme.AppCompat.Light.NoActionBar"
39-
tools:targetApi="lollipop">
37+
parent="Theme.AppCompat.Light.NoActionBar">
4038
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
4139
</style>
4240

0 commit comments

Comments
 (0)
Please sign in to comment.