You are on page 1of 2

ECLIPSE ANDROID PROJECT IMPORT SUMMARY ====================================== Ignored Files: -------------The following files were *not* copied into

the new Gradle project; you should evaluate whether these are still needed in your project and if so manually move them: * * * * * * * .gitignore Android.mk ant.properties build.xml proguard-project.txt proguard.flags release.keystore

Replaced Jars with Dependencies: -------------------------------The importer recognized the following .jar files as third party libraries and replaced them with Gradle dependencies instead. This has the advantage that more explicit version information is known, and the libraries can be updated automatically. However, it is possible that the .jar file in your project was of an older version than the dependency we picked, which could render the project not compileable. You can disable the jar replacement in the import wizard and try again: gson-2.1.jar => com.google.code.gson:gson:2.1 Potentially Missing Dependency: ------------------------------When we replaced the following .jar files with a Gradle dependency, we inferred the dependency version number from the filename. This specific version may not actually be available from the repository. If you get a build error stating that the dependency is missing, edit the version number to for example "+" to pick up the latest version instead. (This may require you to update your code if the library APIs have changed.) gson-2.1.jar => version 2.1 in com.google.code.gson:gson:2.1 Moved Files: -----------Android Gradle projects use a different directory structure than ADT Eclipse projects. Here's how the projects were restructured: * * * * * * * AndroidManifest.xml => XConnect/src/main/AndroidManifest.xml assets/ => XConnect/src/main/assets/ libs/commons-io-2.4.jar => XConnect/libs/commons-io-2.4.jar libs/google-play-services.jar => XConnect/libs/google-play-services.jar libs/libGoogleAnalyticsV2.jar => XConnect/libs/libGoogleAnalyticsV2.jar res/ => XConnect/src/main/res/ src/ => XConnect/src/main/java/

Old Build Tools: ---------------The version of the build tools installed with your SDK is old. It should be at least version 19.0.1 to work well with the Gradle build system. To update it, open the Android SDK Manager, and install the highest available version of Tools > Android SDK Build-tools.

Next Steps: ----------You can now build the project. The Gradle project needs network connectivity to download dependencies. Bugs: ----If for some reason your project does not build, and you determine that it is due to a bug or limitation of the Eclipse to Gradle importer, please file a bug at http://b.android.com with category Component-Tools. (This import summary is for your information only, and can be deleted after import once you are satisfied with the results.)

You might also like