<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="22"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values-v20, theme.xml,
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.Material.Light">
</style>
</resources>
)CreateResource(values-v14, theme.xml,
<resources>
<style name="MyAppTheme" parent="@android:style/Theme.Holo.Light">
</style>
</resources>
)