# frameworkJar **Repository Path**: nextos_f/frameworkJar ## Basic Information - **Project Name**: frameworkJar - **Description**: A gradle plugin for add frameworkJar in to classpath for using android hiden api - **Primary Language**: Kotlin - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-12-28 - **Last Updated**: 2025-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # frameworkJar [![jitpack](https://jitpack.io/v/io.github.liu-wanshun/frameworkJar.svg)](https://jitpack.io/#io.github.liu-wanshun/frameworkJar) [![Weekly download statistics](https://jitpack.io/v/io.github.liu-wanshun/frameworkJar/week.svg)](https://jitpack.io/#io.github.liu-wanshun/frameworkJar) [![Monthly download statistics](https://jitpack.io/v/io.github.liu-wanshun/frameworkJar/month.svg)](https://jitpack.io/#io.github.liu-wanshun/frameworkJar) [![license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0) A gradle plugin for add frameworkJar in to classpath for using android hiden api ## Add Gradle Plugin Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block): ```kotlin pluginManagement { repositories { maven { url = uri("https://www.jitpack.io/") } } } plugins { id("io.github.liu-wanshun.frameworkJar") version "1.0.0" } ```
Using apply plugin (the old way) [legacy plugin application](https://docs.gradle.org/current/userguide/plugins.html#sec:old_plugin_application) [Learn how to apply plugins to subprojects](https://docs.gradle.org/current/userguide/plugins.html#sec:subprojects_plugins_dsl) ```kotlin buildscript { repositories { maven { url = uri("https://www.jitpack.io/") } } dependencies { classpath("io.github.liu-wanshun.frameworkJar:plugins:1.0.0") } } apply(plugin = "io.github.liu-wanshun.frameworkJar") ```
## Example Kotlin DSL / Groovy DSL : ```kotlin dependencies { // this should replace with your frameworkJar frameworkJar("androidx.core:core:1.0.0") } ```