├── .gitignore ├── README.md ├── hn-android-client ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── prof18 │ │ │ └── hn │ │ │ └── android │ │ │ └── client │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── prof18 │ │ │ │ └── hn │ │ │ │ └── android │ │ │ │ └── client │ │ │ │ ├── adapter │ │ │ │ └── NewsAdapter.kt │ │ │ │ ├── data │ │ │ │ ├── HNApiService.kt │ │ │ │ └── model │ │ │ │ │ ├── AppState.kt │ │ │ │ │ ├── News.kt │ │ │ │ │ └── NewsState.kt │ │ │ │ └── ui │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainViewModel.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── item_news_card.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── prof18 │ │ └── hn │ │ └── android │ │ └── client │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── hn-backend ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources │ ├── application.conf │ └── logback.xml ├── settings.gradle.kts ├── src │ ├── Application.kt │ ├── NewsRepository.kt │ └── NewsRepositoryImpl.kt └── test │ └── ApplicationTest.kt ├── hn-foundation ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle.kts └── src │ ├── androidMain │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── androidTest │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── commonMain │ ├── kotlin │ │ └── com │ │ │ └── prof18 │ │ │ └── hn │ │ │ └── dto │ │ │ ├── BaseDTO.kt │ │ │ ├── NewsDTO.kt │ │ │ └── NewsListDTO.kt │ └── resources │ │ └── .gitkeep │ ├── commonTest │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── iosMain │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── iosTest │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── jvmMain │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ ├── jvmTest │ ├── kotlin │ │ └── .gitkeep │ └── resources │ │ └── .gitkeep │ └── main │ └── AndroidManifest.xml ├── hn-ios-client └── HN Client │ ├── HN Client.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── marco.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── marco.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── marcogomiero.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── HN Client.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── marco.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── marcogomiero.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ ├── HN Client │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── SceneDelegate.swift │ ├── data │ │ ├── CustomSerializer.swift │ │ └── model │ │ │ ├── AppState.swift │ │ │ ├── News.swift │ │ │ └── NewsState.swift │ └── ui │ │ ├── MainView.swift │ │ ├── MainViewModel.swift │ │ └── components │ │ ├── ErrorView.swift │ │ ├── LoadingView.swift │ │ ├── NewsCard.swift │ │ └── NewsList.swift │ ├── HN ClientTests │ ├── HN_ClientTests.swift │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── AuthenticationInterceptor.swift │ │ ├── CachedResponseHandler.swift │ │ ├── Combine.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift │ ├── HNFoundation │ ├── HNFoundation.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── HNFoundation.framework │ │ │ │ ├── HNFoundation │ │ │ │ ├── Headers │ │ │ │ └── HNFoundation.h │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── ios-x86_64-simulator │ │ │ └── HNFoundation.framework │ │ │ ├── HNFoundation │ │ │ ├── Headers │ │ │ └── HNFoundation.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md │ ├── Local Podspecs │ └── HNFoundation.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── marcogomiero.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── HNFoundation.xcscheme │ │ ├── Pods-HN Client.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.debug.xcconfig │ ├── Alamofire.modulemap │ └── Alamofire.release.xcconfig │ ├── HNFoundation │ ├── HNFoundation-copy-dsyms-input-files.xcfilelist │ ├── HNFoundation-copy-dsyms-output-files.xcfilelist │ ├── HNFoundation-copy-dsyms.sh │ ├── HNFoundation-xcframeworks-input-files.xcfilelist │ ├── HNFoundation-xcframeworks-output-files.xcfilelist │ ├── HNFoundation-xcframeworks.sh │ ├── HNFoundation.debug.xcconfig │ └── HNFoundation.release.xcconfig │ └── Pods-HN Client │ ├── Pods-HN Client-Info.plist │ ├── Pods-HN Client-acknowledgements.markdown │ ├── Pods-HN Client-acknowledgements.plist │ ├── Pods-HN Client-dummy.m │ ├── Pods-HN Client-frameworks-Debug-input-files.xcfilelist │ ├── Pods-HN Client-frameworks-Debug-output-files.xcfilelist │ ├── Pods-HN Client-frameworks-Release-input-files.xcfilelist │ ├── Pods-HN Client-frameworks-Release-output-files.xcfilelist │ ├── Pods-HN Client-frameworks.sh │ ├── Pods-HN Client-umbrella.h │ ├── Pods-HN Client.debug.xcconfig │ ├── Pods-HN Client.modulemap │ └── Pods-HN Client.release.xcconfig └── utils ├── hacker_news.json └── news-generator.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/README.md -------------------------------------------------------------------------------- /hn-android-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/.gitignore -------------------------------------------------------------------------------- /hn-android-client/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /hn-android-client/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/build.gradle -------------------------------------------------------------------------------- /hn-android-client/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/proguard-rules.pro -------------------------------------------------------------------------------- /hn-android-client/app/src/androidTest/java/com/prof18/hn/android/client/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/androidTest/java/com/prof18/hn/android/client/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/adapter/NewsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/adapter/NewsAdapter.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/HNApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/HNApiService.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/AppState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/AppState.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/News.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/News.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/NewsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/data/model/NewsState.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/ui/MainActivity.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/java/com/prof18/hn/android/client/ui/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/java/com/prof18/hn/android/client/ui/MainViewModel.kt -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/layout/item_news_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/layout/item_news_card.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /hn-android-client/app/src/test/java/com/prof18/hn/android/client/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/app/src/test/java/com/prof18/hn/android/client/ExampleUnitTest.kt -------------------------------------------------------------------------------- /hn-android-client/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/build.gradle -------------------------------------------------------------------------------- /hn-android-client/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/gradle.properties -------------------------------------------------------------------------------- /hn-android-client/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /hn-android-client/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /hn-android-client/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/gradlew -------------------------------------------------------------------------------- /hn-android-client/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-android-client/gradlew.bat -------------------------------------------------------------------------------- /hn-android-client/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "NH Client" -------------------------------------------------------------------------------- /hn-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/.gitignore -------------------------------------------------------------------------------- /hn-backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/build.gradle.kts -------------------------------------------------------------------------------- /hn-backend/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/gradle.properties -------------------------------------------------------------------------------- /hn-backend/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /hn-backend/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /hn-backend/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/gradlew -------------------------------------------------------------------------------- /hn-backend/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/gradlew.bat -------------------------------------------------------------------------------- /hn-backend/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/resources/application.conf -------------------------------------------------------------------------------- /hn-backend/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/resources/logback.xml -------------------------------------------------------------------------------- /hn-backend/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "hn-backend" 2 | -------------------------------------------------------------------------------- /hn-backend/src/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/src/Application.kt -------------------------------------------------------------------------------- /hn-backend/src/NewsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/src/NewsRepository.kt -------------------------------------------------------------------------------- /hn-backend/src/NewsRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/src/NewsRepositoryImpl.kt -------------------------------------------------------------------------------- /hn-backend/test/ApplicationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-backend/test/ApplicationTest.kt -------------------------------------------------------------------------------- /hn-foundation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/.gitignore -------------------------------------------------------------------------------- /hn-foundation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/build.gradle.kts -------------------------------------------------------------------------------- /hn-foundation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/gradle.properties -------------------------------------------------------------------------------- /hn-foundation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /hn-foundation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/gradlew -------------------------------------------------------------------------------- /hn-foundation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/gradlew.bat -------------------------------------------------------------------------------- /hn-foundation/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/local.properties -------------------------------------------------------------------------------- /hn-foundation/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/settings.gradle.kts -------------------------------------------------------------------------------- /hn-foundation/src/androidMain/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/androidMain/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/androidTest/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/androidTest/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/BaseDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/BaseDTO.kt -------------------------------------------------------------------------------- /hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/NewsDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/NewsDTO.kt -------------------------------------------------------------------------------- /hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/NewsListDTO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/src/commonMain/kotlin/com/prof18/hn/dto/NewsListDTO.kt -------------------------------------------------------------------------------- /hn-foundation/src/commonMain/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/commonTest/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/commonTest/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/iosMain/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/iosMain/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/iosTest/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/iosTest/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/jvmMain/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/jvmMain/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/jvmTest/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/jvmTest/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hn-foundation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-foundation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/xcuserdata/marco.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/project.xcworkspace/xcuserdata/marco.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/xcuserdata/marco.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/xcuserdata/marco.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marco.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marco.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marco.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marco.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marcogomiero.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client.xcworkspace/xcuserdata/marcogomiero.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/AppDelegate.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/SceneDelegate.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/data/CustomSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/data/CustomSerializer.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/data/model/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/data/model/AppState.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/data/model/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/data/model/News.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/data/model/NewsState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/data/model/NewsState.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/MainView.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/MainViewModel.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/components/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/components/ErrorView.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/components/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/components/LoadingView.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/components/NewsCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/components/NewsCard.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN Client/ui/components/NewsList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN Client/ui/components/NewsList.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN ClientTests/HN_ClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN ClientTests/HN_ClientTests.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/HN ClientTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/HN ClientTests/Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Podfile -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Podfile.lock -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/AuthenticationInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/AuthenticationInterceptor.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/OperationQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/OperationQueue+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/StringEncoding+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/StringEncoding+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/HNFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/HNFoundation -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Headers/HNFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Headers/HNFoundation.h -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-arm64/HNFoundation.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/HNFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/HNFoundation -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Headers/HNFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Headers/HNFoundation.h -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/HNFoundation.xcframework/ios-x86_64-simulator/HNFoundation.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/HNFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/HNFoundation/README.md -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Local Podspecs/HNFoundation.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Local Podspecs/HNFoundation.podspec.json -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Manifest.lock -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/HNFoundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/HNFoundation.xcscheme -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/Pods-HN Client.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/Pods-HN Client.xcscheme -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Pods.xcodeproj/xcuserdata/marcogomiero.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-copy-dsyms-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-copy-dsyms-input-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-copy-dsyms-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${DWARF_DSYM_FOLDER_PATH}/HNFoundation.framework.dSYM -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-copy-dsyms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-copy-dsyms.sh -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-xcframeworks-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-xcframeworks-input-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-xcframeworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_XCFRAMEWORKS_BUILD_DIR}/HNFoundation -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-xcframeworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation-xcframeworks.sh -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation.debug.xcconfig -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/HNFoundation/HNFoundation.release.xcconfig -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-Info.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-acknowledgements.markdown -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-acknowledgements.plist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-dummy.m -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-frameworks.sh -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client-umbrella.h -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.debug.xcconfig -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.modulemap -------------------------------------------------------------------------------- /hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/hn-ios-client/HN Client/Pods/Target Support Files/Pods-HN Client/Pods-HN Client.release.xcconfig -------------------------------------------------------------------------------- /utils/hacker_news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/utils/hacker_news.json -------------------------------------------------------------------------------- /utils/news-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof18/shared-hn-android-ios-backend/HEAD/utils/news-generator.py --------------------------------------------------------------------------------