agentsclimarketplace

Androidbooster network

Skill huhx0015/AndroidBooster/claude/skills/androidbooster-network

Android Booster: An Android starter project that provides a modular foundation for building production-ready apps. It offers multiple architecture patterns (MVI, MVVM, MVP, VIPER) with shared base classes, so you can choose the approach that fits each feature.

Install
npx -y skills add huhx0015/AndroidBooster --skill androidbooster-network

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Network and Retrofit setup for AndroidBooster. Use when adding API endpoints, Retrofit interfaces, or configuring network layer. Uses Retrofit, OkHttp, Gson.

SKILL.md

1.1 KB, as published. Nobody here has run it

AndroidBooster Network

Retrofit Interface

Define API endpoints in core/network/src/main/kotlin/com/huhx0015/androidbooster/network/interfaces/RetrofitInterface.kt. Extend or use this interface for your API calls.

NetworkModule

core/network/.../modules/NetworkModule.kt provides:

  • Retrofit with base URL from AndroidConstants.API_URL
  • Gson with LOWER_CASE_WITH_UNDERSCORES field naming
  • OkHttpClient with cache (10MB) and HttpLoggingInterceptor (BODY)
  • RetrofitInterface via retrofit.create(RetrofitInterface::class.java)

Base URL

Configure in core/common/.../constants/AndroidConstants.kt:

  • API_URL — Base URL for Retrofit
  • API_VERSION_1, CURRENT_API_VERSION — Version constants

Usage

Inject Retrofit or RetrofitInterface in activities/fragments/ViewModels. Add endpoint methods to RetrofitInterface (or create interfaces and obtain via retrofit.create()).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.