Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb1b41f8 authored by Alan Stokes's avatar Alan Stokes
Browse files

Fix minSdkVersion for test.

P is 28 not 27, and the test requires P.

Test: atest DexLoggerIntegrationTests
Change-Id: Ib83ec92bf5d7e791bac90331b5dcc3c4b826a4fd
parent 2be3da34
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -17,10 +17,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.frameworks.dexloggertest">

    <!-- Tests feature introduced in P (27) -->
    <!-- Tests feature introduced in P (28) -->
    <uses-sdk
        android:minSdkVersion="27"
        android:targetSdkVersion="27" />
        android:minSdkVersion="28"
        android:targetSdkVersion="28" />

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