You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 29, 2018. It is now read-only.
I'm developing an Android app, and two different activities need to be able to parse RSS Feeds. One of these sections works perfectly, parsing this feed just fine, while the other right here, gives me a strange error.
I am implementing these two exactly the same, aside from which feed they are to parse. The first is able to get all the information I need and display and manipulate it perfectly, while the second fails in rssFeedsLoaded(List rssList). If I type anything as much as ''rssList.getChannel();'', it gives me the Attribute 'base' error and fails, returning to the previous activity.
Any more information needed can be provided if needed. The source code for this app is public on my profile, and these are the two activities that use this RSS reader.
After further testing, I've found that the issue is the source I'm grabbing from. The penn source does not work and I believe it is the fault of the site admins. I'm not sure what's causing the error, but it seems to only occur on this feed.
EDIT: So far, the issue seems to be that this has the xml attribute 'base,' but I can't seem to find any other instances of this being used. That would explain the 'xml:base' message, but not the "Line -1" part.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am importing this in my Gradle:
compile ('com.crazyhitty.chdev.ks:rss-manager:0.75'){
exclude module: 'stax'
exclude module: 'stax-api'
exclude module: 'xpp3'
}
and these in my activity:
import com.crazyhitty.chdev.ks.rssmanager.Channel;
import com.crazyhitty.chdev.ks.rssmanager.RSS;
import com.crazyhitty.chdev.ks.rssmanager.RssReader;
I'm developing an Android app, and two different activities need to be able to parse RSS Feeds. One of these sections works perfectly, parsing this feed just fine, while the other right here, gives me a strange error.
I am implementing these two exactly the same, aside from which feed they are to parse. The first is able to get all the information I need and display and manipulate it perfectly, while the second fails in rssFeedsLoaded(List rssList). If I type anything as much as ''rssList.getChannel();'', it gives me the Attribute 'base' error and fails, returning to the previous activity.
Any more information needed can be provided if needed. The source code for this app is public on my profile, and these are the two activities that use this RSS reader.
Working Activity:
https://github.com/rileyclauss/PHSMobile/blob/master/PHSApp/app/src/main/java/com/phsapp/phsapp/athleticsActivity.java
Broken Activity:
https://github.com/rileyclauss/PHSMobile/blob/master/PHSApp/app/src/main/java/com/phsapp/phsapp/newsActivity.java
Email me at: [email protected]
The text was updated successfully, but these errors were encountered: