Italian Manifest

ivanomonti

Expert
Licensed User
Longtime User
Buon giorno a tutta la ML

Come da titolo, manifest non ho ancora capito che sia, spero che nel libro si parli anche di questo.
 

arenaluigi

Well-Known Member
Licensed User
Longtime User
Ciao Ivano,
certo che si!!!

Brevemente, il manifest è un file.xml dove vengono impostati i parametri dell'applicazione ad esempio:
- Package
- nome dell'app
- min sdk
- permission
- logo
- service ecc.
Eccone un esempio:
HTML:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="13" />
<supports-screens android:largeScreens="true" 
    android:normalScreens="true" 
    android:smallScreens="true" 
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddPermission(android.permission.CHANGE_NETWORK_STATE)
'End of default text.
 
Top