Android - Couldn't load memtrack module (No such file or directory)

xiaoxiao2021-02-28  76

There is a problem of Android Installation error:

- Couldn't load memtrack module (No such file or directory) - failed to load memtrack module: -2

This error, as you can read on the question linked in comments above, results to be:

[...] a problem with loading {some} hardware module. This could be something to do with GPU support, sdcard handling, basically anything.

The step 1 below should resolve this problem. Also as I can see, you have some strange package names inside your manifest:

package=”com.example.hive” in <manifest> tag,android:name=”com.sit.gems.app.GemsApplication” for <application>and android:name=”com.sit.gems.activity” in <activity>

I resolved by following these tips:

-> Use the same package. You should have the same for Manifest, Activities, etc.

1. Rename Package as “com.**.**”

2. Edit Child Node “package” in <manifest> as “com.**”

3. Ensure the value of “android:name” in <activity> is the same package as “com.**”

That is all right.

转载请注明原文地址: https://www.6miu.com/read-60718.html

最新回复(0)