Skip to content

Commit 4077f11

Browse files
committed
added MyMoviesWithHttpClient example
1 parent 2e14d40 commit 4077f11

Some content is hidden

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

52 files changed

+1688
-17
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
gen
2+
*.class
3+
local.properties
4+
.settings
5+
.cache

android-in-practice/DealDroid/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- The local.properties file is created and updated by the 'android' tool.
55
It contains the path to the SDK. It should *NOT* be checked into
66
Version Control Systems. -->
7-
<loadproperties srcFile="local.properties" />
7+
<property file="local.properties" />
88

99
<!-- The ant.properties file can be created by you. It is only edited by the
1010
'android' tool to add properties to it.

android-in-practice/DealDroid/project.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "ant.properties", and override values to adapt the script to your
88
# project structure.
99

10-
# Indicates whether an apk should be generated for each density.
11-
split.density=false
12-
# Project target.
13-
target=android-8
14-
15-
proguard.config=proguard.cfg
10+
# Indicates whether an apk should be generated for each density.
11+
split.density=false
12+
# Project target.
13+
target=android-8
14+
15+
proguard.config=proguard.cfg

android-in-practice/DealDroidWithService/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- The local.properties file is created and updated by the 'android' tool.
55
It contains the path to the SDK. It should *NOT* be checked into
66
Version Control Systems. -->
7-
<loadproperties srcFile="local.properties" />
7+
<property file="local.properties" />
88

99
<!-- The ant.properties file can be created by you. It is only edited by the
1010
'android' tool to add properties to it.

android-in-practice/DealDroidWithService/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "ant.properties", and override values to adapt the script to your
88
# project structure.
99

1010
# Indicates whether an apk should be generated for each density.

android-in-practice/FileExplorer/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- The local.properties file is created and updated by the 'android' tool.
55
It contains the path to the SDK. It should *NOT* be checked into
66
Version Control Systems. -->
7-
<loadproperties srcFile="local.properties" />
7+
<property file="local.properties" />
88

99
<!-- The ant.properties file can be created by you. It is only edited by the
1010
'android' tool to add properties to it.

android-in-practice/FileExplorer/project.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "ant.properties", and override values to adapt the script to your
88
# project structure.
99

10+
# Indicates whether an apk should be generated for each density.
11+
split.density=false
1012
# Project target.
1113
target=android-4
1214

android-in-practice/HelloAndroid/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "ant.properties", and override values to adapt the script to your
88
# project structure.
99

1010
# Indicates whether an apk should be generated for each density.

android-in-practice/LifecycleExplorer/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- The local.properties file is created and updated by the 'android' tool.
55
It contains the path to the SDK. It should *NOT* be checked into
66
Version Control Systems. -->
7-
<loadproperties srcFile="local.properties" />
7+
<property file="local.properties" />
88

99
<!-- The ant.properties file can be created by you. It is only edited by the
1010
'android' tool to add properties to it.

android-in-practice/LifecycleExplorer/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "and.properties", and override values to adapt the script to your
88
# project structure.
99

1010
# Indicates whether an apk should be generated for each density.

0 commit comments

Comments
 (0)