Hi
I would like to understand about the sdkversion in a manifest file
Following is my manifest and I understand that android:targetSdkVersion="14" is recommended.
I have 2 questions.
Q1: My android jar path is pointing to android 19 and shouldn't the targetSdkVersion set to android:targetSdkVersion="19"
Configure Path:
Q2: what will happen if i just leave it as <uses-sdk android:minSdkVersion="4"/>. I have done so in the past without any obvious problem. But I need some comments.
My Android OS is 4.4.2.
Thanks.
I would like to understand about the sdkversion in a manifest file
Following is my manifest and I understand that android:targetSdkVersion="14" is recommended.
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:largeHeap,"true")
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
I have 2 questions.
Q1: My android jar path is pointing to android 19 and shouldn't the targetSdkVersion set to android:targetSdkVersion="19"
Configure Path:
B4X:
C:\Android SDK\adt-bundle-windows-x86-20131030\sdk\platforms\android-19\android.jar
Q2: what will happen if i just leave it as <uses-sdk android:minSdkVersion="4"/>. I have done so in the past without any obvious problem. But I need some comments.
My Android OS is 4.4.2.
Thanks.