-
Notifications
You must be signed in to change notification settings - Fork 8
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
180 changed files
with
885 additions
and
365 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.hzy.lib7z"></manifest> | ||
package="com.hzy.lib7z"> | ||
|
||
|
||
</manifest> |
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7:2736fc44c62f905b79d8e8a841811468:59a736c8a89196073f7ea06ccba73b06 |
Binary file added
BIN
+459 Bytes
app/libs/aar-release.aar.cache/metadata/com/mainli/mylibrary/BuildConfig.jadxmd
Binary file not shown.
Binary file added
BIN
+209 Bytes
app/libs/aar-release.aar.cache/metadata/com/mainli/mylibrary/NativeLibTest.jadxmd
Binary file not shown.
11 changes: 11 additions & 0 deletions
11
app/libs/aar-release.aar.cache/sources/com/mainli/mylibrary/BuildConfig.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,11 @@ | ||
package com.mainli.mylibrary; | ||
|
||
/* loaded from: aar-release.aar:classes.jar:com/mainli/mylibrary/BuildConfig.class */ | ||
public final class BuildConfig { | ||
public static final boolean DEBUG = false; | ||
public static final String APPLICATION_ID = "com.mainli.mylibrary"; | ||
public static final String BUILD_TYPE = "release"; | ||
public static final String FLAVOR = ""; | ||
public static final int VERSION_CODE = 1; | ||
public static final String VERSION_NAME = "1.0"; | ||
} |
10 changes: 10 additions & 0 deletions
10
app/libs/aar-release.aar.cache/sources/com/mainli/mylibrary/NativeLibTest.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,10 @@ | ||
package com.mainli.mylibrary; | ||
|
||
/* loaded from: aar-release.aar:classes.jar:com/mainli/mylibrary/NativeLibTest.class */ | ||
public class NativeLibTest { | ||
public static native String stringFromJNI(); | ||
|
||
static { | ||
System.loadLibrary("native-aar-lib"); | ||
} | ||
} |
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,16 @@ | ||
package com.mainli.apk; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
import java.io.File; | ||
|
||
public class FileUtils { | ||
@NotNull | ||
public static File join(@NotNull File files, String... paths) { | ||
File tmp = files; | ||
for (String path : paths) { | ||
tmp = new File(tmp, path); | ||
} | ||
return tmp; | ||
} | ||
} |
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
3 changes: 2 additions & 1 deletion
3
file-plugin/src/main/kotlin/com/imf/plugin/so/AssetsOutDestManager.kt
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.