Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions content/docs/300-developers/500-android-kotlin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ dependencies {
}
```

**If you're using proguard to minify your release app, add these lines to your proguard-rules.pro**
```
-keep class org.kin.kinetic.**{*;}
-keep class org.kin.kinetic.**$* {*;}
-keep class com.solana.**{*;}

-keep class org.bitcoinj.**{*;}
-keep class org.bitcoin.**{*;}
```


### Instantiate the Kinetic Client

The Kinetic Client will give you access to all the methods you need to work with Kin on the blockchain.
Expand Down