what is the reason of using different version of sqlite in android?
what is the reason of using different version开发者_Python百科 of sqlite in android ? and please tell me difference between all version and in which circumtances we can use different version of sqlite in android?
You probably do not need to worry and stick to the highest version available today.
The versioning mechanism is here to avoid future problems if sqlite releases a new version with an incompatible api.
Making sure you declare the version you need will make your application more future-proof.
精彩评论