diff --git a/VIII. Build tool plugins/60.4. Example repackage implementation.md b/VIII. Build tool plugins/60.4. Example repackage implementation.md index e69de29..dd163b2 100644 --- a/VIII. Build tool plugins/60.4. Example repackage implementation.md +++ b/VIII. Build tool plugins/60.4. Example repackage implementation.md @@ -0,0 +1,14 @@ +### 60.4. repackage实现示例 + +这里是一个传统的repackage示例: +```java +Repackager repackager = new Repackager(sourceJarFile); +repackager.setBackupSource(false); +repackager.repackage(new Libraries() { + @Override + public void doWithLibraries(LibraryCallback callback) throws IOException { + // Build system specific implementation, callback for each dependency + // callback.library(new Library(nestedFile, LibraryScope.COMPILE)); + } + }); +```