Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Anggrayudi Hardiannico committed Jan 17, 2025
1 parent d36f085 commit d8da5a4
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,26 @@ If you plan to use only Android internal resources rather than internal classes

````gradle
dependencies {
implementation 'com.anggrayudi:android-hidden-api:35.0'
implementation 'com.anggrayudi:android-hidden-api:X.Y'
}
````

Where `X.Y.Z` is the library version: ![Maven Central](https://img.shields.io/maven-central/v/com.anggrayudi/android-hidden-api.svg)

All versions can be found [here](https://oss.sonatype.org/#nexus-search;gav~com.anggrayudi~android-hidden-api~~~~kw,versionexpand).
To use `SNAPSHOT` version, you need to add this URL to the root Gradle:

```groovy
allprojects {
repositories {
google()
mavenCentral()
// add this line
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
```

Here's some example of accessing internal resources:

```java
Expand Down

0 comments on commit d8da5a4

Please sign in to comment.