Placed the TargetApis wrong

This commit is contained in:
Daniel Martí 2014-03-22 11:18:42 +01:00
parent a1a8c06565
commit 2cd17a904e

View File

@ -19,7 +19,7 @@ public class NfcNotEnabledActivity extends Activity {
* needed for NDEF. Therefore, we detect the current state of NFC, * needed for NDEF. Therefore, we detect the current state of NFC,
* and steer the user accordingly. * and steer the user accordingly.
*/ */
@TargetApi(14) @TargetApi(16)
private void doOnJellybean(Intent intent) { private void doOnJellybean(Intent intent) {
if (NfcAdapter.getDefaultAdapter(this).isEnabled()) if (NfcAdapter.getDefaultAdapter(this).isEnabled())
intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS); intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS);
@ -28,7 +28,7 @@ public class NfcNotEnabledActivity extends Activity {
} }
// this API was added in 4.0 aka Ice Cream Sandwich // this API was added in 4.0 aka Ice Cream Sandwich
@TargetApi(16) @TargetApi(14)
private void doOnIceCreamSandwich(Intent intent) { private void doOnIceCreamSandwich(Intent intent) {
intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS); intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS);
} }