Skip to content

Commit af2160e

Browse files
committed
Client:APIJSONDemoApp改名为APIJSONTest
1 parent 300261d commit af2160e

File tree

83 files changed

+89
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+89
-3
lines changed

APIJSON(Android)/APIJSON(ADT)/APIJSONDemoApp/.classpath renamed to APIJSON(Android)/APIJSON(ADT)/APIJSONTest/.classpath

File renamed without changes.

APIJSON(Android)/APIJSON(ADT)/APIJSONDemoApp/.project renamed to APIJSON(Android)/APIJSON(ADT)/APIJSONTest/.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>APIJSONDemoApp</name>
3+
<name>APIJSONTest</name>
44
<comment></comment>
55
<projects>
66
</projects>

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

File renamed without changes.
385 KB
Binary file not shown.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="apijson.demo"
4+
android:versionCode="1"
5+
android:versionName="@string/app_version" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="15"
9+
android:targetSdkVersion="21" />
10+
11+
<uses-permission android:name="android.permission.INTERNET" />
12+
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
13+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
14+
15+
<application
16+
android:name="apijson.demo.application.DemoApplication"
17+
android:allowBackup="true"
18+
android:icon="@drawable/ic_launcher"
19+
android:label="@string/app_name"
20+
android:theme="@style/AppTheme" >
21+
<activity
22+
android:name="apijson.demo.ui.SelectActivity"
23+
android:label="@string/app_name" >
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
<activity
31+
android:name="apijson.demo.ui.RequestActivity"
32+
android:label="@string/request" >
33+
</activity>
34+
</application>
35+
36+
</manifest>
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
int dimen activity_horizontal_margin 0x7f040000
2+
int dimen activity_vertical_margin 0x7f040001
3+
int drawable ic_launcher 0x7f020000
4+
int id btnRequestRequest 0x7f070003
5+
int id btnSelectAccessError 0x7f07000c
6+
int id btnSelectAccessPermitted 0x7f07000d
7+
int id btnSelectArray 0x7f07000a
8+
int id btnSelectColumns 0x7f070008
9+
int id btnSelectComplex 0x7f07000b
10+
int id btnSelectDelete 0x7f070006
11+
int id btnSelectPost 0x7f070004
12+
int id btnSelectPut 0x7f070005
13+
int id btnSelectRely 0x7f070009
14+
int id btnSelectSingle 0x7f070007
15+
int id btnSelectUpdateLog 0x7f07000e
16+
int id etRequestUrl 0x7f070002
17+
int id pbRequest 0x7f070001
18+
int id tvRequestResult 0x7f070000
19+
int layout request_activity 0x7f030000
20+
int layout select_activity 0x7f030001
21+
int string access_error 0x7f05000c
22+
int string access_permitted 0x7f05000d
23+
int string apijson_info 0x7f050013
24+
int string apijson_slogan 0x7f050012
25+
int string app_name 0x7f050000
26+
int string app_version 0x7f050001
27+
int string array 0x7f05000a
28+
int string browser_can_only_receive_get_response 0x7f050010
29+
int string columns 0x7f050008
30+
int string complex 0x7f05000b
31+
int string delete 0x7f050004
32+
int string get 0x7f050006
33+
int string post 0x7f050003
34+
int string put 0x7f050005
35+
int string received_result 0x7f05000f
36+
int string rely 0x7f050009
37+
int string request 0x7f050002
38+
int string request_error 0x7f050011
39+
int string single 0x7f050007
40+
int string update_log 0x7f05000e
41+
int style AppBaseTheme 0x7f060000
42+
int style AppTheme 0x7f060001
43+
int style activity_page 0x7f060003
44+
int style match_match 0x7f060002
45+
int style match_wrap 0x7f060004
46+
int style select_json 0x7f060006
47+
int style select_name 0x7f060005
1.02 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)