All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.reandroid.apk.framework.FrameworkManager Maven / Gradle / Ivy

package com.reandroid.apk.framework;

import com.reandroid.apk.FrameworkApk;

public abstract class FrameworkManager {
    public abstract FrameworkApk get(int version);
    public abstract Integer getNearestVersion(int version);
    public abstract Integer getLatestVersion();

    public FrameworkApk getNearest(int version){
        Integer nearest = getNearestVersion(version);
        if(nearest != null){
            return get(nearest);
        }
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy