Package com.android.sdklib.repository.local

Examples of com.android.sdklib.repository.local.LocalSdk


     * @return all the installed targets
     */
    @NonNull
    public IAndroidTarget[] getTargets() {
        if (mTargets == null) {
            LocalSdk localSdk = getSdk();
            if (localSdk != null) {
                mTargets = localSdk.getTargets();
            } else {
                mTargets = new IAndroidTarget[0];
            }
        }

View Full Code Here


    @Nullable
    public LocalSdk getSdk() {
         if (mSdk == null) {
             File sdkHome = getSdkHome();
             if (sdkHome != null) {
                 mSdk = new LocalSdk(sdkHome);
             }
         }

        return mSdk;
    }
View Full Code Here

TOP

Related Classes of com.android.sdklib.repository.local.LocalSdk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.