Jason Monk | 2ba4ce6 | 2015-01-13 10:08:23 -0500 | [diff] [blame] | 1 | # |
| 2 | # Include this make file to build your application against this module. |
| 3 | # |
| 4 | # Make sure to include it after you've set all your desired LOCAL variables. |
| 5 | # Note that you must explicitly set your LOCAL_RESOURCE_DIR before including |
| 6 | # this file. |
| 7 | # |
| 8 | # For example: |
| 9 | # |
| 10 | # LOCAL_RESOURCE_DIR := \ |
| 11 | # $(LOCAL_PATH)/res |
| 12 | # |
| 13 | # include frameworks/base/packages/SettingsLib/common.mk |
| 14 | # |
Sasha Smundak | 1109a1f | 2019-01-10 17:15:18 -0800 | [diff] [blame] | 15 | # During the conversion to Soong bluprint files, the equivalent |
| 16 | # functionality is provided by adding |
| 17 | # defaults: ["SettingsLibDefaults"], |
| 18 | # to the corresponding module. |
| 19 | # NOTE: keep this file and ./Android.bp in sync. |
Jason Monk | 2ba4ce6 | 2015-01-13 10:08:23 -0500 | [diff] [blame] | 20 | |
Aurimas Liutikas | 12a37963 | 2017-11-14 01:41:39 +0000 | [diff] [blame] | 21 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Aurimas Liutikas | b8616dc | 2018-04-17 09:50:46 -0700 | [diff] [blame] | 22 | androidx.annotation_annotation \ |
| 23 | androidx.lifecycle_lifecycle-common |
Aurimas Liutikas | 12a37963 | 2017-11-14 01:41:39 +0000 | [diff] [blame] | 24 | |
Adam Lesinski | 5ff3ad6 | 2016-04-13 20:30:45 -0700 | [diff] [blame] | 25 | LOCAL_STATIC_ANDROID_LIBRARIES += \ |
Aurimas Liutikas | b8616dc | 2018-04-17 09:50:46 -0700 | [diff] [blame] | 26 | androidx.legacy_legacy-support-v4 \ |
| 27 | androidx.lifecycle_lifecycle-runtime \ |
| 28 | androidx.recyclerview_recyclerview \ |
| 29 | androidx.preference_preference \ |
| 30 | androidx.appcompat_appcompat \ |
| 31 | androidx.legacy_legacy-preference-v14 \ |
Adam Lesinski | 5ff3ad6 | 2016-04-13 20:30:45 -0700 | [diff] [blame] | 32 | SettingsLib |
Fan Zhang | dd1886a | 2017-07-07 14:38:57 -0700 | [diff] [blame] | 33 | |