migration start
Some checks failed
CI - Multi-Platform Native / Build iOS (RSSuper) (push) Has been cancelled
CI - Multi-Platform Native / Build macOS (push) Has been cancelled
CI - Multi-Platform Native / Build Android (push) Has been cancelled
CI - Multi-Platform Native / Build Linux (push) Has been cancelled
CI - Multi-Platform Native / Build Summary (push) Has been cancelled

This commit is contained in:
2026-03-29 14:12:17 -04:00
parent af87f9f571
commit d346b527e6
51 changed files with 4476 additions and 69 deletions

View File

@@ -0,0 +1,43 @@
# 10. Implement Android RSS/Atom feed parser
meta:
id: native-business-logic-migration-10
feature: native-business-logic-migration
priority: P0
depends_on: [native-business-logic-migration-07]
tags: [implementation, android, parsing]
objective:
- Implement RSS 2.0 and Atom 1.0 feed parser for Android
deliverables:
- FeedParser.kt
- RSSParser.kt
- AtomParser.kt
- FeedType.kt (sealed class)
- ParseResult.kt
- XML parsing utilities
tests:
- Unit: Test RSS 2.0 parsing with sample feeds
- Unit: Test Atom 1.0 parsing with sample feeds
- Unit: Test iTunes namespace handling
- Unit: Test error cases (malformed XML)
- Integration: Test with real-world feeds
acceptance_criteria:
- RSS 2.0 feeds parse correctly
- Atom 1.0 feeds parse correctly
- iTunes namespace handled
- Enclosures extracted properly
- Error handling for malformed feeds
- Performance: <100ms for typical feed
validation:
- Run `./gradlew test`
- Test with known problematic feeds
notes:
- Use kxml or woodstox
- Handle namespaces properly
- Support both inline and separate content