replaced decorators to recyclerview_decorators
replaced decorators to recyclerview_decorators
This commit is contained in:
parent
3ba5ba62c5
commit
ae8491bb46
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
apply from: "../android-configs/lib-config.gradle"
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
dependencies {
|
||||
implementation project(":utils")
|
||||
implementation project(":kotlin-extensions")
|
||||
|
||||
implementation "com.google.android.material:material"
|
||||
implementation "androidx.core:core-ktx"
|
||||
|
||||
constraints {
|
||||
implementation("com.google.android.material:material") {
|
||||
version {
|
||||
require '1.0.0'
|
||||
}
|
||||
}
|
||||
implementation("androidx.core:core-ktx") {
|
||||
version {
|
||||
require '1.3.1'
|
||||
}
|
||||
}
|
||||
implementation("org.jetbrains.kotlin:kotlin-stdlib") {
|
||||
version {
|
||||
require '1.3.0'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<manifest package="ru.touchin.roboswag.recyclerview_decorators"/>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ru.touchin.roboswag.views.decorators
|
||||
package ru.touchin.roboswag.recyclerview_decorators.decorators
|
||||
|
||||
import android.content.Context
|
||||
import android.graphics.Rect
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ru.touchin.roboswag.views.decorators
|
||||
package ru.touchin.roboswag.recyclerview_decorators.decorators
|
||||
|
||||
import android.content.Context
|
||||
import android.graphics.Canvas
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ru.touchin.roboswag.views.decorators
|
||||
package ru.touchin.roboswag.recyclerview_decorators.decorators
|
||||
|
||||
import android.graphics.Canvas
|
||||
import android.graphics.Rect
|
||||
Loading…
Reference in New Issue