forked from mainlxl/Android-So-Handler
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
218 additions
and
19 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -18,3 +18,4 @@ public interface NeedDownloadSoListener { | |
|
||
void onLibsEmpty(); | ||
} | ||
|
25 changes: 25 additions & 0 deletions
25
load-assets-7z/src/main/java/com/imf/so/assets/load/SimpleNeedDownloadSoListener.java
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,25 @@ | ||
package com.imf.so.assets.load; | ||
|
||
import com.android.annotations.Nullable; | ||
import com.imf.so.assets.load.bean.SoFileInfo; | ||
|
||
import java.io.File; | ||
import java.util.List; | ||
|
||
public abstract class SimpleNeedDownloadSoListener implements NeedDownloadSoListener { | ||
|
||
@Override | ||
public void onNeedDownloadSoInfo(File saveLibsDir, @Nullable List<SoFileInfo> list) { | ||
|
||
} | ||
|
||
@Override | ||
public void onConfigEmpty() { | ||
|
||
} | ||
|
||
@Override | ||
public void onLibsEmpty() { | ||
|
||
} | ||
} |
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