mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-12-04 16:57:27 +00:00
Merge pull request #130 from Oizaro/patch-1
Remove missing library reference
This commit is contained in:
commit
70c5e044db
1 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ public class ProviderInstallerImpl {
|
||||||
// TODO: Move manual loading into helper function (as it is also used in both maps implementations)
|
// TODO: Move manual loading into helper function (as it is also used in both maps implementations)
|
||||||
String primaryCpuAbi = (String) ApplicationInfo.class.getField("primaryCpuAbi").get(otherAppInfo);
|
String primaryCpuAbi = (String) ApplicationInfo.class.getField("primaryCpuAbi").get(otherAppInfo);
|
||||||
if (primaryCpuAbi != null) {
|
if (primaryCpuAbi != null) {
|
||||||
String path = "lib/" + primaryCpuAbi + "/libconscrypt_gmscore_jni.so";
|
String path = "lib/" + primaryCpuAbi;
|
||||||
File cacheFile = new File(context.createPackageContext(packageName, 0).getCacheDir().getAbsolutePath() + "/.gmscore/" + path);
|
File cacheFile = new File(context.createPackageContext(packageName, 0).getCacheDir().getAbsolutePath() + "/.gmscore/" + path);
|
||||||
cacheFile.getParentFile().mkdirs();
|
cacheFile.getParentFile().mkdirs();
|
||||||
File apkFile = new File(context.getPackageCodePath());
|
File apkFile = new File(context.getPackageCodePath());
|
||||||
|
|
Loading…
Reference in a new issue