There is a problem of Android Installation error:
- Couldn't
load memtrack module (No such file or directory)
- failed to load memtrack module: -2
[
...] 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.