summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Alan Stokes <alanstokes@google.com> 2018-09-25 10:28:52 +0100
committer Alan Stokes <alanstokes@google.com> 2018-09-25 10:28:52 +0100
commiteb1b41f8e15ca03ed0d2043852b52fc9b09d2b21 (patch)
tree03db11d74ee061392e48d03b3890e751a02a1daf
parent2be3da34e72e1372819974aeb3d881cf7062b68f (diff)
Fix minSdkVersion for test.
P is 28 not 27, and the test requires P. Test: atest DexLoggerIntegrationTests Change-Id: Ib83ec92bf5d7e791bac90331b5dcc3c4b826a4fd
-rw-r--r--tests/DexLoggerIntegrationTests/AndroidManifest.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/DexLoggerIntegrationTests/AndroidManifest.xml b/tests/DexLoggerIntegrationTests/AndroidManifest.xml
index a847e8f3b921..a9f01edbdc41 100644
--- a/tests/DexLoggerIntegrationTests/AndroidManifest.xml
+++ b/tests/DexLoggerIntegrationTests/AndroidManifest.xml
@@ -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" />