Skip to content

Commit

Permalink
add extension package
Browse files Browse the repository at this point in the history
  • Loading branch information
Mycoola committed Oct 25, 2021
1 parent 6f9a787 commit c2e03d7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {
implementation 'androidx.multidex:multidex:2.0.1'

implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompa t:1.4.0-beta01'
implementation 'androidx.appcompat:appcompat:1.4.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.room:room-runtime:2.3.0'
annotationProcessor 'androidx.room:room-compiler:2.3.0'
Expand All @@ -69,7 +69,7 @@ dependencies {

implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0-alpha01'
implementation 'com.google.android.material:material:1.5.0-alpha04'
implementation 'com.google.android.material:material:1.5.0-alpha05'


implementation 'com.google.firebase:firebase-core:19.0.2'
Expand All @@ -79,9 +79,9 @@ dependencies {
implementation 'com.google.firebase:firebase-auth:21.0.1'


implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.32'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'com.google.android.material:material:1.5.0-alpha04'
implementation 'com.google.android.material:material:1.5.0-alpha05'

// architecture components
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
Expand All @@ -94,7 +94,7 @@ dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:retrofit-mock:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2'

// testing
testImplementation 'junit:junit:4.13.2'
Expand Down
10 changes: 5 additions & 5 deletions liband/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.4.0-beta01'
implementation 'com.google.android.material:material:1.5.0-alpha04'
implementation 'com.google.android.material:material:1.5.0-alpha05'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'

Expand All @@ -43,21 +43,21 @@ dependencies {
implementation 'com.squareup.okhttp:okhttp:2.7.5'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2'

implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.32'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31'
implementation 'com.intuit.sdp:sdp-android:1.0.6'
implementation 'com.intuit.ssp:ssp-android:1.0.6'
implementation 'androidx.room:room-runtime:2.3.0'
implementation 'com.github.bumptech.glide:glide:4.11.0'
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0-alpha01'
implementation 'com.google.android.gms:play-services-base:17.6.0'
implementation 'com.google.android.gms:play-services-maps:17.0.1'

implementation 'androidx.preference:preference-ktx:1.1.1'

annotationProcessor 'androidx.room:room-compiler:2.3.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'androidx.room:room-testing:2.3.0'
androidTestImplementation 'androidx.test:runner:1.4.1-alpha03'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class RoundRectCornerImageView : AppCompatImageView {
override fun onDraw(canvas: Canvas) {
rect!!.set(0f, 0f, this.width.toFloat(), this.height.toFloat())
val radius = 14.0f
path!!.addRoundRect(rect, radius, radius, Path.Direction.CW)
path!!.addRoundRect(rect!!, radius, radius, Path.Direction.CW)
canvas.clipPath(path!!)
super.onDraw(canvas)
}
Expand Down

0 comments on commit c2e03d7

Please sign in to comment.