Skip to content
This repository was archived by the owner on Apr 19, 2022. It is now read-only.

1.0.4

Compare
Choose a tag to compare
@jackdevey jackdevey released this 03 Apr 14:16
· 2 commits to main since this release

Added

  • ๐Ÿ”  New font

Changed

  • ๐Ÿ–ผ Background colours

Installation

Step 1. Make sure mavenCentral() is added as a dependency in your root gradle file:

allprojects {
    repositories {
        mavenCentral()
    }
}

Step 2. Add the dependency to your app's project gradle file:

dependencies {
    implementation 'me.jackdevey:codeview:1.0.4'
}

Step 3. Add the CodeView to your layout

<me.jackdevey.codeview.CodeView
    android:id="@+id/code_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>