-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
461cd06
commit 65f139d
Showing
26 changed files
with
149 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Signature format: 3.0 | ||
package me.tylerbwong.gradle.metalava { | ||
|
||
public enum Documentation { | ||
method public String toString(); | ||
method public static me.tylerbwong.gradle.metalava.Documentation valueOf(String name); | ||
method public static me.tylerbwong.gradle.metalava.Documentation[] values(); | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Documentation HIDDEN; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Documentation PACKAGE; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Documentation PRIVATE; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Documentation PROTECTED; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Documentation PUBLIC; | ||
} | ||
|
||
public enum Format { | ||
method public String toString(); | ||
method public static me.tylerbwong.gradle.metalava.Format valueOf(String name); | ||
method public static me.tylerbwong.gradle.metalava.Format[] values(); | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Format V1; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Format V2; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Format V3; | ||
} | ||
|
||
public enum Signature { | ||
method public String toString(); | ||
method public static me.tylerbwong.gradle.metalava.Signature valueOf(String name); | ||
method public static me.tylerbwong.gradle.metalava.Signature[] values(); | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature API; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature DEX_API; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature DEX_API_MAPPING; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature PRIVATE_API; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature PRIVATE_DEX_API; | ||
enum_constant public static final me.tylerbwong.gradle.metalava.Signature REMOVED_API; | ||
} | ||
|
||
} | ||
|
||
package me.tylerbwong.gradle.metalava.extension { | ||
|
||
public class MetalavaExtension { | ||
ctor public MetalavaExtension(); | ||
method public final me.tylerbwong.gradle.metalava.Documentation getDocumentation(); | ||
method public final String getFilename(); | ||
method public final me.tylerbwong.gradle.metalava.Format getFormat(); | ||
method public final java.util.Set<java.lang.String> getHideAnnotations(); | ||
method public final org.gradle.api.JavaVersion getJavaSourceLevel(); | ||
method public final String? getMetalavaJarPath(); | ||
method public final boolean getShouldIncludeSignatureVersion(); | ||
method public final boolean getShouldOmitCommonPackages(); | ||
method public final boolean getShouldOutputDefaultValues(); | ||
method public final boolean getShouldOutputKotlinNulls(); | ||
method public final me.tylerbwong.gradle.metalava.Signature getSignature(); | ||
method public final String getVersion(); | ||
method public final void setDocumentation(me.tylerbwong.gradle.metalava.Documentation p); | ||
method public final void setFilename(String p); | ||
method public final void setFormat(me.tylerbwong.gradle.metalava.Format p); | ||
method public final void setJavaSourceLevel(org.gradle.api.JavaVersion p); | ||
method public final void setMetalavaJarPath(String? p); | ||
method public final void setShouldIncludeSignatureVersion(boolean p); | ||
method public final void setShouldOmitCommonPackages(boolean p); | ||
method public final void setShouldOutputDefaultValues(boolean p); | ||
method public final void setShouldOutputKotlinNulls(boolean p); | ||
method public final void setSignature(me.tylerbwong.gradle.metalava.Signature p); | ||
method public final void setVersion(String p); | ||
property public final me.tylerbwong.gradle.metalava.Documentation documentation; | ||
property public final String filename; | ||
property public final me.tylerbwong.gradle.metalava.Format format; | ||
property public final java.util.Set<java.lang.String> hideAnnotations; | ||
property public final org.gradle.api.JavaVersion javaSourceLevel; | ||
property public final String? metalavaJarPath; | ||
property public final boolean shouldIncludeSignatureVersion; | ||
property public final boolean shouldOmitCommonPackages; | ||
property public final boolean shouldOutputDefaultValues; | ||
property public final boolean shouldOutputKotlinNulls; | ||
property public final me.tylerbwong.gradle.metalava.Signature signature; | ||
property public final String version; | ||
} | ||
|
||
} | ||
|
||
package me.tylerbwong.gradle.metalava.plugin { | ||
|
||
public final class MetalavaPlugin implements org.gradle.api.Plugin<org.gradle.api.Project> { | ||
ctor public MetalavaPlugin(); | ||
method public void apply(org.gradle.api.Project target); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ enum class Format(private val format: String) { | |
V3("v3"); | ||
|
||
override fun toString(): String = format | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 0 additions & 41 deletions
41
plugin/src/main/kotlin/me/tylerbwong/gradle/task/DownloadTask.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.