1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.carbox.widget.empty"
4    android:versionCode="1"
5    android:versionName="1.0.0" >
6
7    <uses-sdk
8        android:minSdkVersion="21"
9        android:targetSdkVersion="34" />
10    <!--
11        Widget CarBox VUOTO — base di partenza.
12        Il launcher scopre il widget cercando le Activity con:
13          action   com.ferra.carboxlauncher.action.CARBOX_WIDGET
14          category com.ferra.carboxlauncher.category.CARBOX_WIDGET
15        e le renderizza dentro un VirtualDisplay.
16
17        Per aggiungere una schermata impostazioni per-istanza, decommenta il
18        secondo <activity> (SettingsActivity) e crea la classe relativa (vedi il
19        widget "Pulsante" come esempio completo).
20    -->
21    <application
21-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:15:5-50:19
22        android:allowBackup="false"
22-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:16:9-36
23        android:debuggable="true"
24        android:extractNativeLibs="true"
25        android:icon="@drawable/ic_widget"
25-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:17:9-43
26        android:label="@string/widget_name"
26-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:18:9-44
27        android:testOnly="true"
28        android:theme="@style/Theme.CarBoxWidget" >
28-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:19:9-50
29        <activity
29-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:21:9-35:20
30            android:name="com.carbox.widget.empty.EmptyWidgetActivity"
30-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:22:13-48
31            android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|density"
31-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:23:13-99
32            android:excludeFromRecents="true"
32-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:24:13-46
33            android:exported="true"
33-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:25:13-36
34            android:resizeableActivity="true" >
34-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:26:13-46
35            <intent-filter>
35-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:27:13-31:29
36                <action android:name="com.ferra.carboxlauncher.action.CARBOX_WIDGET" />
36-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:28:17-88
36-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:28:25-85
37
38                <category android:name="com.ferra.carboxlauncher.category.CARBOX_WIDGET" />
38-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:29:17-92
38-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:29:27-89
39                <category android:name="android.intent.category.DEFAULT" />
39-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:30:17-76
39-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:30:27-73
40            </intent-filter>
41
42            <meta-data
42-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:32:13-103
43                android:name="com.ferra.carboxlauncher.widget.API_VERSION"
43-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:32:24-82
44                android:value="1" />
44-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:32:83-100
45            <meta-data
45-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:33:13-110
46                android:name="com.ferra.carboxlauncher.widget.DEFAULT_WIDTH_DP"
46-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:33:24-87
47                android:value="200" />
47-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:33:88-107
48            <meta-data
48-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:34:13-111
49                android:name="com.ferra.carboxlauncher.widget.DEFAULT_HEIGHT_DP"
49-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:34:24-88
50                android:value="110" />
50-->C:\Users\rferr\Desktop\CarBoxLauncher\WidgetCarBox\EmptyWidget\emptywidget\src\main\AndroidManifest.xml:34:89-108
51        </activity>
52
53        <!--
54        <activity
55            android:name=".SettingsActivity"
56            android:excludeFromRecents="true"
57            android:exported="true"
58            android:theme="@style/Theme.CarBoxWidgetSettings">
59            <intent-filter>
60                <action android:name="com.ferra.carboxlauncher.action.CARBOX_WIDGET_SETTINGS" />
61                <category android:name="com.ferra.carboxlauncher.category.CARBOX_WIDGET" />
62                <category android:name="android.intent.category.DEFAULT" />
63            </intent-filter>
64        </activity>
65        -->
66    </application>
67
68</manifest>
