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

Commit

Permalink
🎨 Fix bugs & 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdevey committed Apr 3, 2021
1 parent a4aa077 commit 46a1124
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CodeView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 30
versionCode 8
versionName "1.0.4"
versionCode 9
versionName "1.0.5"
}

buildFeatures {
Expand Down
2 changes: 1 addition & 1 deletion CodeView/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'maven-publish'

def LIB_GROUP_ID = 'me.jackdevey'
def LIB_ARTIFACT_ID = 'codeview'
def LIB_VERSION = '1.0.4'
def LIB_VERSION = '1.0.5'

task sourceJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
Expand Down
4 changes: 2 additions & 2 deletions CodeView/src/main/res/layout/line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:id="@+id/line_number"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@color/grey"
android:background="@color/white"
android:gravity="start"
android:padding="5dp"
android:textColor="?android:attr/textColorPrimary"
Expand All @@ -20,7 +20,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:background="@color/white"
android:background="@color/grey"
android:textColor="?android:attr/textColorPrimary"
android:textSize="12sp"
android:fontFamily="@font/roboto"/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
**Step 2.** Add the dependency to your app's project gradle file:
```groovy
dependencies {
implementation 'me.jackdevey:codeview:1.0.4'
implementation 'me.jackdevey:codeview:1.0.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android.useAndroidX=true

GROUP=me.jackdevey
POM_ARTIFACT_ID=codeview
VERSION_NAME=1.0.4
VERSION_NAME=1.0.5

POM_NAME=CodeView
POM_PACKAGING=aar
Expand Down

0 comments on commit 46a1124

Please sign in to comment.