Skip to content

Commit c871314

Browse files
committed
Commit iniziale del progetto (esclusa la prova iniziale mal riuscita)
1 parent ff22a7e commit c871314

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

import-summary.txt

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
ECLIPSE ANDROID PROJECT IMPORT SUMMARY
2+
======================================
3+
4+
Ignored Files:
5+
--------------
6+
The following files were *not* copied into the new Gradle project; you
7+
should evaluate whether these are still needed in your project and if
8+
so manually move them:
9+
10+
* ic_launcher-web.png
11+
* proguard-project.txt
12+
13+
Replaced Jars with Dependencies:
14+
--------------------------------
15+
The importer recognized the following .jar files as third party
16+
libraries and replaced them with Gradle dependencies instead. This has
17+
the advantage that more explicit version information is known, and the
18+
libraries can be updated automatically. However, it is possible that
19+
the .jar file in your project was of an older version than the
20+
dependency we picked, which could render the project not compileable.
21+
You can disable the jar replacement in the import wizard and try again:
22+
23+
android-support-v4.jar => com.android.support:support-v4:18.0.0
24+
25+
Moved Files:
26+
------------
27+
Android Gradle projects use a different directory structure than ADT
28+
Eclipse projects. Here's how the projects were restructured:
29+
30+
* AndroidManifest.xml => app/src/main/AndroidManifest.xml
31+
* assets/ => app/src/main/assets/
32+
* res/ => app/src/main/res/
33+
* src/ => app/src/main/java/
34+
35+
Next Steps:
36+
-----------
37+
You can now build the project. The Gradle project needs network
38+
connectivity to download dependencies.
39+
40+
Bugs:
41+
-----
42+
If for some reason your project does not build, and you determine that
43+
it is due to a bug or limitation of the Eclipse to Gradle importer,
44+
please file a bug at http://b.android.com with category
45+
Component-Tools.
46+
47+
(This import summary is for your information only, and can be deleted
48+
after import once you are satisfied with the results.)

proguard-project.txt

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
-keep class * extends java.util.ListResourceBundle {
2+
protected Object[][] getContents();
3+
}
4+
5+
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
6+
public static final *** NULL;
7+
}
8+
9+
-keepnames @com.google.android.gms.common.annotation.KeepName class *
10+
-keepclassmembernames class * {
11+
@com.google.android.gms.common.annotation.KeepName *;
12+
}
13+
14+
-keepnames class * implements android.os.Parcelable {
15+
public static final ** CREATOR;
16+
}

0 commit comments

Comments
 (0)