hi
i would like to use my app with android 6 too and i heard i need to make changes to the manifest file but how?
what should i do to use my app also on android 6 but without making any problems for older android version?
this is my manifest:
i would like to use my app with android 6 too and i heard i need to make changes to the manifest file but how?
what should i do to use my app also on android 6 but without making any problems for older android version?
this is my manifest:
AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19"/>
<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, "@android:style/Theme.Holo.Light")
SetApplicationAttribute(android:largeHeap,"true")
AddPermission(android.permission.READ_PHONE_STATE)
AddPermission(android.permission.RECORD_AUDIO)
AddPermission(android.permission.MODIFY_AUDIO_SETTINGS)
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
AddPermission(android.permission.PROCESS_OUTGOING_CALLS)
AddPermission("android.permission.READ_CONTACTS")
AddReceiverText(callrecsag,
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>)
AddReceiverText(callrecsag,
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>)
'End of default text.
'AdMob
AddApplicationText(
<meta-data android:name="com.google.android.gms.version"
android:value="@Integer/google_play_services_version"/>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
)
'End of AdMob