-
Notifications
You must be signed in to change notification settings - Fork 27
/
import-summary.txt
87 lines (79 loc) · 2.98 KB
/
import-summary.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
ECLIPSE ANDROID PROJECT IMPORT SUMMARY
======================================
Manifest Merging:
-----------------
Your project uses libraries that provide manifests, and your Eclipse
project did not explicitly turn on manifest merging. In Android Gradle
projects, manifests are always merged (meaning that contents from your
libraries' manifests will be merged into the app manifest. If you had
manually copied contents from library manifests into your app manifest
you may need to remove these for the app to build correctly.
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:
From Pure2D:
* .DS_Store
* .gitignore
* LICENSE
* LICENSE.3RDPARTY
* README.md
* obj/
* obj/local/
* obj/local/armeabi/
* obj/local/armeabi/liblwf-pure2d.so
* proguard-project.txt
From Pure2DDemo:
* .DS_Store
* .idea/
* .idea/.name
* .idea/compiler.xml
* .idea/copyright/
* .idea/copyright/profiles_settings.xml
* .idea/gradle.xml
* .idea/misc.xml
* .idea/modules.xml
* .idea/vcs.xml
* .idea/workspace.xml
* LICENSE
* LICENSE.3RDPARTY
* ic_launcher-web.png
* proguard-project.txt
* pure2D-demo.iml
* pure2d-ui.dtd
Moved Files:
------------
Android Gradle projects use a different directory structure than ADT
Eclipse projects. Here's how the projects were restructured:
In Pure2D:
* AndroidManifest.xml => pure2D/src/main/AndroidManifest.xml
* libs/jbox2d-library-2.1.2.2.jar => pure2D/libs/jbox2d-library-2.1.2.2.jar
* libs/slf4j-android-1.5.8.jar => pure2D/libs/slf4j-android-1.5.8.jar
* res/ => pure2D/src/main/res/
* src/ => pure2D/src/main/java/
In Pure2DDemo:
* AndroidManifest.xml => pure2DDemo/src/main/AndroidManifest.xml
* assets/ => pure2DDemo/src/main/assets/
* libs/armeabi-v7a/libgnustl_shared.so => pure2DDemo/src/main/jniLibs/armeabi-v7a/libgnustl_shared.so
* libs/armeabi-v7a/liblwf-pure2d.so => pure2DDemo/src/main/jniLibs/armeabi-v7a/liblwf-pure2d.so
* libs/armeabi/libgnustl_shared.so => pure2DDemo/src/main/jniLibs/armeabi/libgnustl_shared.so
* libs/armeabi/liblwf-pure2d.so => pure2DDemo/src/main/jniLibs/armeabi/liblwf-pure2d.so
* libs/jbox2d-library-2.1.2.2.jar => pure2DDemo/libs/jbox2d-library-2.1.2.2.jar
* libs/slf4j-android-1.5.8.jar => pure2DDemo/libs/slf4j-android-1.5.8.jar
* libs/x86/libgnustl_shared.so => pure2DDemo/src/main/jniLibs/x86/libgnustl_shared.so
* libs/x86/liblwf-pure2d.so => pure2DDemo/src/main/jniLibs/x86/liblwf-pure2d.so
* res/ => pure2DDemo/src/main/res/
* src/ => pure2DDemo/src/main/java/
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.)