OpenWeatherMap requires (mandatory) API key
[AndroidWeatherInformation] / import-summary.txt
1 ECLIPSE ANDROID PROJECT IMPORT SUMMARY
2 ======================================
3
4 Manifest Merging:
5 -----------------
6 Your project uses libraries that provide manifests, and your Eclipse
7 project did not explicitly turn on manifest merging. In Android Gradle
8 projects, manifests are always merged (meaning that contents from your
9 libraries' manifests will be merged into the app manifest. If you had
10 manually copied contents from library manifests into your app manifest
11 you may need to remove these for the app to build correctly.
12
13 Ignored Files:
14 --------------
15 The following files were *not* copied into the new Gradle project; you
16 should evaluate whether these are still needed in your project and if
17 so manually move them:
18
19 * ic_launcher-web.png
20 * proguard-project.txt
21 * tests/
22 * tests/gen/
23 * tests/gen/de/
24 * tests/gen/de/example/
25 * tests/gen/de/example/exampletdd/
26 * tests/gen/de/example/exampletdd/test/
27 * tests/gen/de/example/exampletdd/test/BuildConfig.java
28 * tests/gen/de/example/exampletdd/test/R.java
29 * tests/proguard-project.txt
30 * tests/project.properties
31
32 Replaced Jars with Dependencies:
33 --------------------------------
34 The importer recognized the following .jar files as third party
35 libraries and replaced them with Gradle dependencies instead. This has
36 the advantage that more explicit version information is known, and the
37 libraries can be updated automatically. However, it is possible that
38 the .jar file in your project was of an older version than the
39 dependency we picked, which could render the project not compileable.
40 You can disable the jar replacement in the import wizard and try again:
41
42 android-support-v4.jar => com.android.support:support-v4:+
43
44 Replaced Libraries with Dependencies:
45 -------------------------------------
46 The importer recognized the following library projects as third party
47 libraries and replaced them with Gradle dependencies instead. This has
48 the advantage that more explicit version information is known, and the
49 libraries can be updated automatically. However, it is possible that
50 the source files in your project were of an older version than the
51 dependency we picked, which could render the project not compileable.
52 You can disable the library replacement in the import wizard and try
53 again:
54
55 google-play-services_lib => [com.google.android.gms:play-services:+]
56
57 Moved Files:
58 ------------
59 Android Gradle projects use a different directory structure than ADT
60 Eclipse projects. Here's how the projects were restructured:
61
62 * AndroidManifest.xml => app/src/main/AndroidManifest.xml
63 * libs/jackson-core-2.3.3.jar => app/libs/jackson-core-2.3.3.jar
64 * lint.xml => app/lint.xml
65 * res/ => app/src/main/res/
66 * src/ => app/src/main/java/
67 * tests/res/ => app/src/androidTest/res/
68 * tests/src/ => app/src/androidTest/java/
69
70 Next Steps:
71 -----------
72 You can now build the project. The Gradle project needs network
73 connectivity to download dependencies.
74
75 Bugs:
76 -----
77 If for some reason your project does not build, and you determine that
78 it is due to a bug or limitation of the Eclipse to Gradle importer,
79 please file a bug at http://b.android.com with category
80 Component-Tools.
81
82 (This import summary is for your information only, and can be deleted
83 after import once you are satisfied with the results.)