summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/PodcastApp.java
blob: 94227b5227aec73fb85b552c511a59cb9b66b344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package de.podfetcher;

import de.podfetcher.feed.FeedManager;
import de.podfetcher.FeedlistActivity;
import android.app.Application;
import greendroid.app.GDApplication;

public class PodcastApp extends GDApplication {

	private static PodcastApp singleton;
	
	public static PodcastApp getInstance() {
		return singleton;
	}

	public Class<?> getHomeActivityClass() {
		return PodfetcherActivity.class;
	}

	@Override
	public void onCreate() {
		super.onCreate();
		singleton = this;
		
		//FeedManager manager = FeedManager.getInstance();
		//manager.loadDBData(getApplicationContext());
	}
	
	

}