File tree 4 files changed +16
-0
lines changed
4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ android_library {
74
74
" android.hardware.dumpstate-V1.1-java" ,
75
75
" lottie" ,
76
76
" WifiTrackerLib" ,
77
+ " windowExtLib" ,
77
78
],
78
79
79
80
libs : [
@@ -102,6 +103,10 @@ android_app {
102
103
],
103
104
static_libs : [" Settings-core" ],
104
105
uses_libs : [" org.apache.http.legacy" ],
106
+ optional_uses_libs : [
107
+ " androidx.window.extensions" ,
108
+ " androidx.window.sidecar" ,
109
+ ],
105
110
resource_dirs : [],
106
111
optimize : {
107
112
proguard_flags_files : [" proguard.flags" ],
@@ -113,6 +118,11 @@ android_library_import {
113
118
aars : [" libs/contextualcards.aar" ],
114
119
}
115
120
121
+ android_library_import {
122
+ name : " windowExtLib" ,
123
+ aars : [" libs/window_ext_lib.aar" ],
124
+ }
125
+
116
126
filegroup {
117
127
name : " Settings_proguard_flags" ,
118
128
srcs : [" proguard.flags" ],
Original file line number Diff line number Diff line change 122
122
android : appComponentFactory =" androidx.core.app.CoreComponentFactory" >
123
123
124
124
<uses-library android : name =" org.apache.http.legacy" />
125
+
125
126
<!-- Settings -->
126
127
127
128
<activity android : name =" .homepage.SettingsHomepageActivity"
Original file line number Diff line number Diff line change 66
66
-keepclasseswithmembers class * extends com.android.settings.slices.SliceBackgroundWorker {
67
67
public <init>(android.content.Context, android.net.Uri);
68
68
}
69
+
70
+ # Keep WM Jetpack classes and callbacks
71
+ -keep class androidx.window.extensions.** { *; }
72
+ -dontwarn androidx.window.extensions.**
73
+ -keep class androidx.window.** { *; }
You can’t perform that action at this time.
0 commit comments