23 lines
977 B
XML
23 lines
977 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Launcher3 workspace attribute declarations — required for AAPT2 to compile
|
|
default_workspace.xml as a standalone APK. These mirror the definitions in
|
|
Launcher3's res/values/attrs.xml and are used only for resource compilation;
|
|
the actual attribute semantics are interpreted by the launcher at runtime.
|
|
-->
|
|
<resources>
|
|
<declare-styleable name="Favorite">
|
|
<attr name="packageName" format="string" />
|
|
<attr name="className" format="string" />
|
|
<attr name="screen" format="integer" />
|
|
<attr name="x" format="integer" />
|
|
<attr name="y" format="integer" />
|
|
<attr name="spanX" format="integer" />
|
|
<attr name="spanY" format="integer" />
|
|
<attr name="icon" format="reference" />
|
|
<attr name="title" format="string" />
|
|
<attr name="uri" format="string" />
|
|
<attr name="container" format="integer" />
|
|
</declare-styleable>
|
|
</resources>
|