Skip to content

Commit b21d8a4

Browse files
committed
新增APIJSON(ADT),把原来APIJSON(Android)里代码迁移过来
1 parent 636fe22 commit b21d8a4

30 files changed

Lines changed: 127 additions & 39 deletions
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>APIJSON(ADT)</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>

APIJSON(Android)/AndroidManifest.xml renamed to APIJSON(Android)/APIJSON(ADT)/AndroidManifest.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="zuo.biao.apijson"
3+
package="zuo.biao.apijson.client"
44
android:versionCode="1"
5-
android:versionName="1.0" >
5+
android:versionName="@string/app_version" >
66

77
<uses-sdk
88
android:minSdkVersion="15"
@@ -13,13 +13,13 @@
1313
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
1414

1515
<application
16-
android:name="zuo.biao.apijson.DemoApplication"
16+
android:name="zuo.biao.apijson.client.DemoApplication"
1717
android:allowBackup="true"
1818
android:icon="@drawable/ic_launcher"
1919
android:label="@string/app_name"
2020
android:theme="@style/AppTheme" >
2121
<activity
22-
android:name="zuo.biao.apijson.SelectActivity"
22+
android:name="zuo.biao.apijson.client.SelectActivity"
2323
android:label="@string/app_name" >
2424
<intent-filter>
2525
<action android:name="android.intent.action.MAIN" />
@@ -28,7 +28,7 @@
2828
</intent-filter>
2929
</activity>
3030
<activity
31-
android:name="zuo.biao.apijson.QueryActivity"
31+
android:name="zuo.biao.apijson.client.QueryActivity"
3232
android:label="Query" >
3333
</activity>
3434
</application>

APIJSON(Android)/gen/zuo/biao/apijson/BuildConfig.java renamed to APIJSON(Android)/APIJSON(ADT)/gen/zuo/biao/apijson/client/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** Automatically generated file. DO NOT MODIFY */
2-
package zuo.biao.apijson;
2+
package zuo.biao.apijson.client;
33

44
public final class BuildConfig {
55
public final static boolean DEBUG = true;

APIJSON(Android)/gen/zuo/biao/apijson/R.java renamed to APIJSON(Android)/APIJSON(ADT)/gen/zuo/biao/apijson/client/R.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* should not be modified by hand.
66
*/
77

8-
package zuo.biao.apijson;
8+
package zuo.biao.apijson.client;
99

1010
public final class R {
1111
public static final class attr {
File renamed without changes.
File renamed without changes.

APIJSON(Android)/project.properties renamed to APIJSON(Android)/APIJSON(ADT)/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
1212

1313
# Project target.
14-
target=android-22
14+
target=android-21

APIJSON(Android)/res/drawable-hdpi/ic_launcher.png renamed to APIJSON(Android)/APIJSON(ADT)/res/drawable-hdpi/ic_launcher.png

File renamed without changes.

APIJSON(Android)/res/drawable-mdpi/ic_launcher.png renamed to APIJSON(Android)/APIJSON(ADT)/res/drawable-mdpi/ic_launcher.png

File renamed without changes.

0 commit comments

Comments
 (0)