Package jadx.plugins.tools.resolvers
Interface IJadxPluginResolver
- All Known Implementing Classes:
GithubReleaseResolver,LocalFileResolver
public interface IJadxPluginResolver
-
Method Summary
Modifier and TypeMethodDescriptionbooleanhasVersion(String locationId) Check if locationId has a specified version numberid()Unique resolver identifier, should be same as locationId prefixbooleanThis resolver support updates and can fetch the latest version.Fetch the latest version plugin metadata by locationresolveVersions(String locationId, int page, int perPage) Fetch several latest versions (pageable) of plugin by locationId.
-
Method Details
-
id
String id()Unique resolver identifier, should be same as locationId prefix -
isUpdateSupported
boolean isUpdateSupported()This resolver support updates and can fetch the latest version. -
resolve
Fetch the latest version plugin metadata by location -
resolveVersions
Fetch several latest versions (pageable) of plugin by locationId.- Parameters:
page- page number, starts with 1perPage- result's count limit
-
hasVersion
Check if locationId has a specified version number
-