Skip to content

Commit 2d29755

Browse files
committed
updates
1 parent dd5eeac commit 2d29755

File tree

31 files changed

+190
-93
lines changed

31 files changed

+190
-93
lines changed

aaa.library/AndroidManifest.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.
-9.18 KB
Binary file not shown.
-5.11 KB
Binary file not shown.
-14 KB
Binary file not shown.

aaa.library/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

aaa.library/src/RssItem.java

Lines changed: 0 additions & 72 deletions
This file was deleted.

android.berlin.maps/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=Google Inc.:Google APIs:15
14+
target=Google Inc.:Google APIs:16

aaa.library/.classpath renamed to com.vogella.android.jugkarlsruhe/.classpath

File renamed without changes.
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>aaa.library</name>
3+
<name>com.vogella.android.jugkarlsruhe</name>
44
<comment></comment>
55
<projects>
66
</projects>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.vogella.android.jugkarlsruhe"
3+
android:versionCode="1"
4+
android:versionName="1.0" >
5+
6+
<uses-sdk
7+
android:minSdkVersion="16"
8+
android:targetSdkVersion="15" />
9+
10+
<application
11+
android:icon="@drawable/ic_launcher"
12+
android:label="@string/app_name"
13+
android:theme="@style/AppTheme" >
14+
<activity
15+
android:name=".MainActivity"
16+
android:label="@string/title_activity_main" >
17+
<intent-filter>
18+
<action android:name="android.intent.action.MAIN" />
19+
20+
<category android:name="android.intent.category.LAUNCHER" />
21+
</intent-filter>
22+
</activity>
23+
<activity
24+
android:name=".SecondActivity"
25+
android:label="@string/title_activity_main" >
26+
<intent-filter>
27+
<action android:name="android.intent.action.SEND" />
28+
29+
<category android:name="android.intent.category.DEFAULT" />
30+
<data android:mimeType="text/plain"/>
31+
</intent-filter>
32+
</activity>
33+
</application>
34+
35+
</manifest>

0 commit comments

Comments
 (0)