News-App

所属分类:android开发
开发工具:kotlin
文件大小:0KB
下载次数:0
上传日期:2023-11-12 19:56:15
上 传 者sh-1993
说明:  使用Kotlin和Compose开发的新闻应用程序
(News Application developed using Kotlin and Compose)

文件列表:
.idea/ (0, 2023-06-22)
.idea/.name (8, 2023-06-22)
.idea/compiler.xml (169, 2023-06-22)
.idea/deploymentTargetDropDown.xml (554, 2023-06-22)
.idea/gradle.xml (1130, 2023-06-22)
.idea/inspectionProfiles/ (0, 2023-06-22)
.idea/inspectionProfiles/Project_Default.xml (2331, 2023-06-22)
.idea/kotlinc.xml (176, 2023-06-22)
.idea/misc.xml (394, 2023-06-22)
.idea/vcs.xml (167, 2023-06-22)
Gemfile (178, 2023-06-22)
Gemfile.lock (6080, 2023-06-22)
app/ (0, 2023-06-22)
app/build.gradle.kts (2559, 2023-06-22)
app/google-services.json (996, 2023-06-22)
app/proguard-rules.pro (754, 2023-06-22)
app/src/ (0, 2023-06-22)
app/src/androidTest/ (0, 2023-06-22)
app/src/androidTest/java/ (0, 2023-06-22)
app/src/androidTest/java/com/ (0, 2023-06-22)
app/src/androidTest/java/com/alexmumo/ (0, 2023-06-22)
app/src/androidTest/java/com/alexmumo/news_app/ (0, 2023-06-22)
app/src/androidTest/java/com/alexmumo/news_app/ExampleInstrumentedTest.kt (31, 2023-06-22)
app/src/main/ (0, 2023-06-22)
app/src/main/AndroidManifest.xml (1198, 2023-06-22)
app/src/main/java/ (0, 2023-06-22)
app/src/main/java/com/ (0, 2023-06-22)
app/src/main/java/com/alexmumo/ (0, 2023-06-22)
app/src/main/java/com/alexmumo/news_app/ (0, 2023-06-22)
app/src/main/java/com/alexmumo/news_app/CrashlyticsTree.kt (1044, 2023-06-22)
app/src/main/java/com/alexmumo/news_app/NewsApp.kt (321, 2023-06-22)
app/src/main/java/com/alexmumo/news_app/NewsApplication.kt (851, 2023-06-22)
app/src/main/res/ (0, 2023-06-22)
app/src/main/res/drawable-v24/ (0, 2023-06-22)
app/src/main/res/drawable-v24/ic_launcher_foreground.xml (1702, 2023-06-22)
app/src/main/res/drawable/ (0, 2023-06-22)
... ...

## News-App - News App is a multi-module news app built using Kotlin, Jetpack Compose and [News API](https://github.com/alexymumo/News-App/blob/master/"https://newsapi.org/") ## Table of Contents - [Features](https://github.com/alexymumo/News-App/blob/master/#features) - [Architecture](https://github.com/alexymumo/News-App/blob/master/#architecture) - [Tech-Stack](https://github.com/alexymumo/News-App/blob/master/#tech-stack) - [Screenshots](https://github.com/alexymumo/News-App/blob/master/#screenshots) - [Tests](https://github.com/alexymumo/News-App/blob/master/#tests) - [Demo](https://github.com/alexymumo/News-App/blob/master/#demo) ## Features - Display news into categories - Search trending news - BookMarks - Offline support - Support different languages,Themes, ## Architecture - Built using clean architecture ## Tech-Stack - [Kotlin](https://github.com/alexymumo/News-App/blob/master/https://kotlin.org) - Modern but already mature programming language aimed to make developers happier. It's concise, safe, interoperable with Java and other languages, and provides many ways to reuse code between multiple platforms for productive programming. - [Koin](https://github.com/alexymumo/News-App/blob/master/https://hilt.com) - Dependency injection library for kotlin and android - [Jetpack Components](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/jetpack) - [Jetpack Compose](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/jetpack/compose) - Modern toolkit for building native UI. - [Android KTX](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/kotlin/ktx.html) - Provide concise, idiomatic Kotlin to Jetpack and Android platform APIs. - [AndroidX](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/jetpack/androidx) - Major improvement to the original Android [Support Library](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/topic/libraries/support-library/index), which is no longer maintained. - [Lifecycle](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/topic/libraries/architecture/lifecycle) - Perform actions in response to a change in the lifecycle status of another component, such as activities and fragments. - [ViewModel](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/topic/libraries/architecture/viewmodel) - Designed to store and manage UI-related data in a lifecycle conscious way. The ViewModel class allows data to survive configuration changes such as screen rotations. - [Room](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/training/data-storage/room) - Provides an abstraction layer over SQLite used for offline data caching. - [Navigation Component](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/guide/navigation/navigation-getting-started) - Component that allows easier implementation of navigation from simple button clicks to more complex patterns. - [Paging](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/topic/libraries/architecture/paging/v3-overview)-Helps load and display pages of data from a larger dataset from local storage or over network - [Retrofit](https://github.com/alexymumo/News-App/blob/master/https://square.github.io/retrofit/) - Type-safe http client and supports coroutines out of the box. - [GSON](https://github.com/alexymumo/News-App/blob/master/https://github.com/square/gson) - JSON Parser,used to parse requests on the data layer for Entities and understands Kotlin non-nullable and default parameters. - [OkHttp-Logging-Interceptor](https://github.com/alexymumo/News-App/blob/master/https://github.com/square/okhttp/blob/master/okhttp-logging-interceptor) - Logs HTTP request and response data. - [Coroutines](https://github.com/alexymumo/News-App/blob/master/https://github.com/Kotlin/kotlinx.coroutines) - Library Support for coroutines. - [Flow](https://github.com/alexymumo/News-App/blob/master/https://developer.android.com/kotlin/flow) - Flows are built on top of coroutines and can provide multiple values. A flow is conceptually a stream of data that can be computed asynchronously. - [Timber](https://github.com/alexymumo/News-App/blob/master/https://github.com/JakeWharton/timber) - Library for easier logging. - [Coil](https://github.com/alexymumo/News-App/blob/master/https://coil-kt.github.io/coil/compose/) - Image Library from loading images from the database and caching in memory. - [kotlinx.coroutines](https://github.com/alexymumo/News-App/blob/master/https://github.com/Kotlin/kotlinx.coroutines) - Library Support for coroutines,provides runBlocking coroutine builder used in tests. - [Truth](https://github.com/alexymumo/News-App/blob/master/) -Assertion library by google - [Material3](https://github.com/alexymumo/News-App/blob/master/) - Design system for compose ## Screenshots ## Tests ## Demo

近期下载者

相关文件


收藏者