Skip to content

Commit 0996c02

Browse files
committed
- v 1.0.5 - make customDividerShowFlag public
1 parent 5b662d5 commit 0996c02

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ subprojects {
5151

5252
```groovy
5353
dependencies {
54-
implementation 'com.github.Devlight:CornerCutLinearLayout:1.0.4'
54+
implementation 'com.github.Devlight:CornerCutLinearLayout:1.0.5'
5555
}
5656
```
5757

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ android {
3636
dependencies {
3737
implementation project(':cornercutlinearlayout')
3838
implementation "androidx.core:core-ktx:1.5.0-alpha05"
39-
implementation "com.google.android.material:material:1.3.0-alpha03"
39+
implementation "com.google.android.material:material:1.3.0-alpha04"
4040
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<activity android:name="io.devlight.xtreeivi.sample.MainActivity">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
15-
1615
<category android:name="android.intent.category.LAUNCHER" />
1716
</intent-filter>
1817
</activity>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.4.20-RC"
3+
ext.kotlin_version = "1.4.30-M1"
44
repositories {
55
google()
66
jcenter()

cornercutlinearlayout/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ android {
3434

3535
dependencies {
3636
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
37-
implementation "androidx.core:core-ktx:1.5.0-alpha05"
37+
implementation "androidx.core:core-ktx:1.5.0-beta01"
3838
}

cornercutlinearlayout/src/main/java/io/devlight/xtreeivi/cornercutlinearlayout/CornerCutLinearLayout.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ class CornerCutLinearLayout : LinearLayout {
10571057
* Attributes:
10581058
* [R.styleable.CornerCutLinearLayout_ccll_custom_divider_show_flag]
10591059
*/
1060-
private var customDividerShowFlag by SimpleNonNullDelegate(
1060+
var customDividerShowFlag by SimpleNonNullDelegate(
10611061
initialValue = CustomDividerShowFlag.NONE,
10621062
afterSetPredicate = { invalidateCustomDividerIfNeeded() }
10631063
)

0 commit comments

Comments
 (0)