Skip to content

Commit 163b666

Browse files
committed
updates
1 parent ccfa3b5 commit 163b666

File tree

68 files changed

+370
-157
lines changed

Some content is hidden

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

68 files changed

+370
-157
lines changed

com.example.android.rssfeed/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<classpathentry kind="src" path="src"/>
44
<classpathentry kind="src" path="gen"/>
55
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6-
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
6+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
77
<classpathentry kind="output" path="bin/classes"/>
88
</classpath>
Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1-
<?xml version="1.0" encoding="utf-8"?>
21
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
32
package="com.example.android.rssfeed"
43
android:versionCode="1"
54
android:versionName="1.0" >
65

7-
<uses-sdk android:minSdkVersion="15" />
8-
9-
<uses-permission android:name="android.permission.INTERNET" />
6+
<uses-sdk
7+
android:minSdkVersion="16"
8+
android:targetSdkVersion="15" />
109

1110
<application
12-
android:name="RssApplication"
13-
android:icon="@drawable/icon"
14-
android:label="@string/app_name" >
11+
android:icon="@drawable/ic_launcher"
12+
android:label="@string/app_name"
13+
android:theme="@style/AppTheme" >
1514
<activity
16-
android:name=".RssFeedActivity"
17-
android:label="@string/app_name" >
15+
android:name=".RssfeedActivity"
16+
android:label="@string/title_activity_rssfeed" >
1817
<intent-filter>
1918
<action android:name="android.intent.action.MAIN" />
2019

2120
<category android:name="android.intent.category.LAUNCHER" />
2221
</intent-filter>
2322
</activity>
23+
<activity
24+
android:name=".DetailActivity"
25+
android:label="Detail" >
26+
</activity>
2427
</application>
2528

2629
</manifest>
40.6 KB
Loading
341 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To enable ProGuard in your project, edit project.properties
2+
# to define the proguard.config property as described in that file.
3+
#
4+
# Add project specific ProGuard rules here.
5+
# By default, the flags in this file are appended to flags specified
6+
# in ${sdk.dir}/tools/proguard/proguard-android.txt
7+
# You can edit the include path and order by changing the ProGuard
8+
# include property in project.properties.
9+
#
10+
# For more details, see
11+
# http://developer.android.com/guide/developing/tools/proguard.html
12+
13+
# Add any project specific keep options here:
14+
15+
# If your project uses WebView with JS, uncomment the following
16+
# and specify the fully qualified class name to the JavaScript interface
17+
# class:
18+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19+
# public *;
20+
#}

com.example.android.rssfeed/project.properties

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
#
44
# This file must be checked in Version Control Systems.
55
#
6-
# To customize properties used by the Ant build system use,
6+
# To customize properties used by the Ant build system edit
77
# "ant.properties", and override values to adapt the script to your
88
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
912

1013
# Project target.
11-
target=android-15
14+
target=android-16
15+
android.library.reference.1=../com.example.android.rssfeedlibary
3.05 KB
Loading
3.35 KB
Loading
1.69 KB
Loading
2.96 KB
Loading

0 commit comments

Comments
 (0)