AntennaPod è un lettore podcast per Android completamente open-source ed è possibile iscriversi a tutti i canali funkwhale e a qualsiasi feed RSS. AntennaPod e Funkwhale sono sviluppati senza interessi commerciali e rispettano la privacy: https://castopod.it
Go to file
daniel oeh 98d75f6e61 improved structure of strings.xml 2012-09-11 22:06:25 +02:00
assets Prepared release of version 0.9.4.4 2012-09-10 13:14:43 +02:00
res improved structure of strings.xml 2012-09-11 22:06:25 +02:00
src/de/danoeh/antennapod improved structure of strings.xml 2012-09-11 22:06:25 +02:00
tests Added support for id-tag in Atom's feed-element 2012-09-02 15:18:47 +02:00
.classpath Fixed bug in the playbackService related to audiofocus 2012-07-04 20:13:28 +02:00
.gitignore Added pom.xml, excluded files generated by maven 2012-07-31 12:08:51 +02:00
.project Renamed package and application 2012-07-13 12:23:47 +02:00
AndroidManifest.xml Prepared release of version 0.9.4.4 2012-09-10 13:14:43 +02:00
CHANGELOG.md Prepared release of version 0.9.4.4 2012-09-10 13:14:43 +02:00
LICENSE Added license 2012-07-30 14:25:09 +02:00
README.md Added flattr button to readme file 2012-08-07 14:06:05 +02:00
build.xml Implemented FeedMedia Download 2012-05-28 13:22:23 +02:00
ic_launcher-web.png improved app icon 2012-07-20 13:27:41 +02:00
lint.xml Updated references, deleted GreenDroid lib from project 2012-04-10 15:59:23 +02:00
pom.xml Prepared release of version 0.9.4.4 2012-09-10 13:14:43 +02:00
proguard-project.txt Updated references, deleted GreenDroid lib from project 2012-04-10 15:59:23 +02:00
proguard.cfg Fixed problem with proguard configuration 2012-08-22 11:39:55 +02:00
project.properties changed path to libraries 2012-07-31 11:54:04 +02:00

README.md

AntennaPod

This is the official repository of AntennaPod, a podcast manager for Android.

Flattr Button

License

AntennaPod is licensed under the MIT License. You can find the license text in the LICENSE file.

Dependencies

AntennaPod has the following dependencies:

Building

Before building, make sure you have added FlattrConfig.java as described in the 'Flattr API' - section!

Building with ant

ActionBarSherlock and ViewPagerIndicator have to be added as library projects. Flattr4j and ApacheCommons Lang are jar-libraries and have to be copied into the libs folder in the root directory.

Building with maven

You can already build unsigned packages with maven, if you add annotations.jar from the Android SDK to your local maven repository. You don't have to do anything described in the 'Building with ant' section in order to build with maven.

  • Make sure the ANDROID_HOME variable is set to the location of your Android SDK installation

  • Navigate from your Android SDK directory into tools/support

  • Execute the following command:

    mvn install:install-file -Dfile=./annotations.jar -DgroupId=android.tools.support -DartifactId=annotations -Dversion=1.0 -Dpackaging=jar

  • In the root directory of this project, you can then execute the following command to build it:

    mvn clean package

Flattr API

AntennaPod accesses the flattr API for flattring podcasts. In order to gain access, a client ID and a client secret is required, which you can get by registering a new app on the flattr website. The official API credentials have been excluded from the public source code. In order to successfully build the project, a java class called FlattrConfig with two fields containing the credentials has to be created in src/de/danoeh/antennapod/util/flattr . You can also use the file called FlattrConfig.java.example to do that. If you leave the two fields blank, everything except the authentication process will work.