Currently i am working on google app engine and when i create an apk file from the project. It auto generate 3 files in my apk

  1. org.codehaus.jackson.impl.VERSION.txt
  2. com.fasterxml.jackson.core.jsom.VERSION.txt
  3. com.google.api.client.googleapis.google.jks I want to know about these file??

I think first two file are for json reader but why there is 2 json readers???

有帮助吗?

解决方案

com.fasterxml.jackson.core.jsom and org.codehaus.jackson.impl are both part of the Jackson JSON library.

com.google.api.client.googleapis.google.jks is the Google API Java library.

I also guess the VERSION.txt files, since automatically generated, are just part of the build process.

What was your problem?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top