Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Oeh committed Dec 23, 2011
0 parents commit c9283f0
Show file tree
Hide file tree
Showing 28 changed files with 1,275 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Backup files
*~
27 changes: 27 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.podfetcher"
android:versionCode="1"
android:versionName="1.0" >

<!-- <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-sdk android:minSdkVersion="10" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".PodfetcherActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
85 changes: 85 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Podfetcher" default="help">

<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
This is the place to change some Ant specific build properties.
Here are some properties you may want to change/update:
source.dir
The name of the source directory. Default is 'src'.
out.dir
The name of the output directory. Default is 'bin'.
For other overridable properties, look at the beginning of the rules
files in the SDK, at tools/ant/build.xml
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems.
-->
<property file="ant.properties" />

<!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This contains project specific properties such as project target, and library
dependencies. Lower level build properties are stored in ant.properties
(or in .classpath for Eclipse projects).
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<loadproperties srcFile="project.properties" />

<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
unless="sdk.dir"
/>


<!-- extension targets. Uncomment the ones where you want to do custom work
in between standard targets -->
<!--
<target name="-pre-build">
</target>
<target name="-pre-compile">
</target>
/* This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir} */
<target name="-post-compile">
</target>
-->

<!-- Import the actual build file.
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<import> task.
- customize it to your needs.
- Customize the whole content of build.xml
- copy/paste the content of the rules files (minus the top node)
into this file, replacing the <import> task.
- customize to your needs.
***********************
****** IMPORTANT ******
***********************
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
in order to avoid having your file be overridden by tools such as "android update project"
-->
<!-- version-tag: 1 -->
<import file="${sdk.dir}/tools/ant/build.xml" />

</project>
40 changes: 40 additions & 0 deletions proguard.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService

-keepclasseswithmembernames class * {
native <methods>;
}

-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}

-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}

-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}

-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
11 changes: 11 additions & 0 deletions project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "ant.properties", and override values to adapt the script to your
# project structure.

# Project target.
target=android-10
Binary file added res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-ldpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions res/layout/feedlist_item.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imgvFeedimage"
android:layout_height="fill_parent"
android:layout_width="50dip"
android:padding="10dip"
android:cropToPadding="true"
android:layout_alignParentLeft="true"
/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:layout_alignParentRight="true">
<TextView
android:id="@+id/txtvFeedname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/txtvNewEpisodes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

/>


</LinearLayout>



</RelativeLayout>
16 changes: 16 additions & 0 deletions res/layout/main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/textedit"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/testbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test2" />

</LinearLayout>
7 changes: 7 additions & 0 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="hello">Hello World, PodfetcherActivity!</string>
<string name="app_name">Podfetcher</string>

</resources>
25 changes: 25 additions & 0 deletions src/de/podfetcher/PodcastApp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package de.podfetcher;

import de.podfetcher.feed.FeedManager;
import android.app.Application;

public class PodcastApp extends Application {

private static PodcastApp singleton;

public static PodcastApp getInstance() {
return singleton;
}

@Override
public void onCreate() {
super.onCreate();
singleton = this;

FeedManager manager = FeedManager.getInstance();
manager.loadDBData(getApplicationContext());
}



}
41 changes: 41 additions & 0 deletions src/de/podfetcher/PodfetcherActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package de.podfetcher;

import javax.xml.parsers.ParserConfigurationException;

import org.xml.sax.SAXException;

import de.podfetcher.feed.*;
import de.podfetcher.storage.DownloadRequester;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.os.Bundle;

public class PodfetcherActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final DownloadRequester requester = DownloadRequester.getInstance();
final FeedHandler handler = new FeedHandler();
final FeedManager manager = FeedManager.getInstance();

final Button button = (Button)findViewById(R.id.testbutton);
final EditText edittext = (EditText)findViewById(R.id.textedit);



button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
final String s = edittext.getText().toString();
manager.addFeed(v.getContext(), s);
edittext.setText("Receiving...");

}
});

}
}
45 changes: 45 additions & 0 deletions src/de/podfetcher/feed/Feed.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
package de.podfetcher.feed;

import java.util.ArrayList;




/**
* Data Object for a whole feed
* @author daniel
*
*/
public class Feed extends FeedFile{
public String title;
public String link;
public String description;
public FeedImage image;
public FeedCategory category;
public ArrayList<FeedItem> items;


public Feed() {
items = new ArrayList<FeedItem>();
}

public Feed(String url) {
this.download_url = url;
}

public Feed(String title, String link, String description, String download_url,
FeedCategory category) {
super();
this.title = title;
this.link = link;
this.description = description;
this.download_url = download_url;
this.category = category;
items = new ArrayList<FeedItem>();
}





}
12 changes: 12 additions & 0 deletions src/de/podfetcher/feed/FeedCategory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package de.podfetcher.feed;

public class FeedCategory extends FeedComponent{
public String name;

public FeedCategory(String name) {
super();
this.name = name;
}


}
16 changes: 16 additions & 0 deletions src/de/podfetcher/feed/FeedComponent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package de.podfetcher.feed;

/**
* Represents every possible component of a feed
* @author daniel
*
*/
public class FeedComponent {

public long id;

public FeedComponent() {
super();
}

}
Loading

0 comments on commit c9283f0

Please sign in to comment.