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

Commit 46a1124

Browse files
committed
🎨 Fix bugs & 1.0.5
1 parent a4aa077 commit 46a1124

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

β€ŽCodeView/build.gradleβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
defaultConfig {
1616
minSdkVersion 15
1717
targetSdkVersion 30
18-
versionCode 8
19-
versionName "1.0.4"
18+
versionCode 9
19+
versionName "1.0.5"
2020
}
2121

2222
buildFeatures {

β€ŽCodeView/publish.gradleβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'maven-publish'
22

33
def LIB_GROUP_ID = 'me.jackdevey'
44
def LIB_ARTIFACT_ID = 'codeview'
5-
def LIB_VERSION = '1.0.4'
5+
def LIB_VERSION = '1.0.5'
66

77
task sourceJar(type: Jar) {
88
from android.sourceSets.main.java.srcDirs

β€ŽCodeView/src/main/res/layout/line.xmlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
android:id="@+id/line_number"
99
android:layout_width="wrap_content"
1010
android:layout_height="match_parent"
11-
android:background="@color/grey"
11+
android:background="@color/white"
1212
android:gravity="start"
1313
android:padding="5dp"
1414
android:textColor="?android:attr/textColorPrimary"
@@ -20,7 +20,7 @@
2020
android:layout_width="match_parent"
2121
android:layout_height="match_parent"
2222
android:padding="5dp"
23-
android:background="@color/white"
23+
android:background="@color/grey"
2424
android:textColor="?android:attr/textColorPrimary"
2525
android:textSize="12sp"
2626
android:fontFamily="@font/roboto"/>

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ allprojects {
1414
**Step 2.** Add the dependency to your app's project gradle file:
1515
```groovy
1616
dependencies {
17-
implementation 'me.jackdevey:codeview:1.0.4'
17+
implementation 'me.jackdevey:codeview:1.0.5'
1818
}
1919
```
2020

β€Žgradle.propertiesβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android.useAndroidX=true
2020

2121
GROUP=me.jackdevey
2222
POM_ARTIFACT_ID=codeview
23-
VERSION_NAME=1.0.4
23+
VERSION_NAME=1.0.5
2424

2525
POM_NAME=CodeView
2626
POM_PACKAGING=aar

0 commit comments

Comments
Β (0)