Remove setting low profile in Basic dreams
The DreamService takes care of removing the system bars when the dream
is active. Low profile is being deprecated.
Bug: 151749301
Test: m && flash && atest DreamManagerServiceTests && manually check that
system bars are hidden when dream is active
Change-Id: I0c446ad987dcf9c66afe7bec712c0e024ac4ea45
diff --git a/Android.bp b/Android.bp
index c9a65a8..7381271 100644
--- a/Android.bp
+++ b/Android.bp
@@ -2,5 +2,5 @@
name: "BasicDreams",
// Only compile source java files in this apk.
srcs: ["src/**/*.java"],
- platform_apis: true,
+ sdk_version: "current",
}
diff --git a/src/com/android/dreams/basic/Colors.java b/src/com/android/dreams/basic/Colors.java
index 9a75146..d30c174 100644
--- a/src/com/android/dreams/basic/Colors.java
+++ b/src/com/android/dreams/basic/Colors.java
@@ -67,7 +67,6 @@
public void onAttachedToWindow() {
super.onAttachedToWindow();
setInteractive(false);
- setLowProfile(true);
setFullscreen(true);
setContentView(mSurfaceView);
}