I am writing this android app and all of a suddenly it now doesn't launch. Well, it does but then say:
[Your app] has closed unexpectedly
The strange thing is that it shows no error messages in logcat.The only messager that I saw is this:
WARNING: linker: libvc1dec_sa.ca7.so has text relocations. This is wasting memory and is a security risk. Please fix.
So I did some searching and came across this:
mylib.so has text relocations. This is wasting memory and is a security risk. Please fix
but that was talking about the NDK, which I'm not using. So I have no idea what this error message means, nor what lbvc1dec_sa.ca7.so
is. So how can I fix this? Where is the problem?
This work for me: modify build.gradle script to a lower version due to the android studio you are working with
initial:
defaultConfig {
applicationId "com.android.imageloadingdemo"
minSdkVersion 21
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
after:
defaultConfig {
applicationId "com.android.imageloadingdemo"
minSdkVersion 13
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With