Skip to content

Flexing is an Android library with utility functions.

License

Notifications You must be signed in to change notification settings

bradmartin/flexing

Repository files navigation

Flexing 💪 for Android

license JitPack Twitter donate

Install

Gradle:

  • Add it in your root build.gradle at the end of repositories:
allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
  • Add the dependency:
dependencies {
    implementation 'com.github.bradmartin:flexing:0.1.30'
}

Maven

  • Add the JitPack repository to your build file:
<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
</repositories>
  • Add the dependency:
<dependency>
    <groupId>com.github.bradmartin</groupId>
    <artifactId>flexing</artifactId>
    <version>0.1.30</version>
</dependency>

API

ImagesKt Static Methods

Method Description
getBitmapFromImageView(ImageView: image): Bitmap Returns a Bitmap from an ImageView