Java tutorial
//package com.java2s; /* * Copyright (c) 2012-2014 Arne Schwabe * Distributed under the GNU GPL v2. For full terms see the file doc/LICENSE.txt */ import android.annotation.TargetApi; import android.os.Build; public class Main { @TargetApi(Build.VERSION_CODES.LOLLIPOP) private static String[] getSupportedAbisLollipop() { return Build.SUPPORTED_ABIS; } }