Skip to content

Commit

Permalink
Merge pull request #18 from ShwetaChauhan18/update/update_project
Browse files Browse the repository at this point in the history
⬆️ Upgrading dependencies
  • Loading branch information
mobile-simformsolutions authored Dec 23, 2021
2 parents 5a5b9fe + 547529c commit b60f6c4
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 33 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SSCustomEditTextOutlineBorder

[![](https://jitpack.io/v/SimformSolutionsPvtLtd/SSCustomEditTextOutLineBorder.svg)](https://jitpack.io/#SimformSolutionsPvtLtd/SSCustomEditTextOutLineBorder)
[![Kotlin Version](https://img.shields.io/badge/Kotlin-v1.5.20-blue.svg)](https://kotlinlang.org)
[![Kotlin Version](https://img.shields.io/badge/Kotlin-v1.6.10-blue.svg)](https://kotlinlang.org)
[![Platform](https://img.shields.io/badge/Platform-Android-green.svg?style=flat)](https://www.android.com/)
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
[![Android Weekly](https://img.shields.io/badge/Android%20Weekly-%23402-orange)](https://androidweekly.net/issues/issue-402)
Expand Down Expand Up @@ -41,7 +41,7 @@ allprojects {

```
dependencies {
implementation 'com.github.simformsolutions:SSCustomEditTextOutLineBorder:1.0.12'
implementation 'com.github.simformsolutions:SSCustomEditTextOutLineBorder:1.0.13'
}
```

Expand Down
4 changes: 3 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.simform.customedittextoutlineborder.SplashActivity">
<activity
android:name="com.simform.customedittextoutlineborder.SplashActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
/**
* Copyright 2019 PoolTrader
* Develop By Shweta Chauhan
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.simform.customedittextoutlineborder

import android.os.Bundle
Expand Down
Binary file modified buildSrc/build/classes/kotlin/main/ClassPaths.class
Binary file not shown.
Binary file modified buildSrc/build/classes/kotlin/main/Configs.class
Binary file not shown.
Binary file modified buildSrc/build/classes/kotlin/main/Libs$Androidx.class
Binary file not shown.
Binary file modified buildSrc/build/classes/kotlin/main/Libs$Kotlin.class
Binary file not shown.
Binary file modified buildSrc/build/classes/kotlin/main/Libs.class
Binary file not shown.
Binary file modified buildSrc/build/classes/kotlin/main/Versions.class
Binary file not shown.
Binary file modified buildSrc/build/kotlin/compileKotlin/build-history.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified buildSrc/build/kotlin/compileKotlin/last-build.bin
Binary file not shown.
Binary file modified buildSrc/build/libs/buildSrc.jar
Binary file not shown.
Empty file.
18 changes: 9 additions & 9 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ object Plugins {
* */
object Configs {
const val applicationId = "com.pooltrader"
const val compileSdkVersion = 30
const val compileSdkVersion = 31
const val minSdkVersion = 21
const val targetSdkVersion = 30
const val targetSdkVersion = 31
const val versionCode = 1
const val versionName = "1.0"
}
Expand All @@ -26,26 +26,26 @@ object Configs {
object Versions {
// project build.gradle.kts
const val gradlePlugin = "4.2.1"
const val googleServicesPlugin = "4.3.2"
const val googleServicesPlugin = "4.3.10"

// kotlin
const val kotlin = "1.5.20"
const val ktx = "1.6.0"
const val kotlin = "1.6.10"
const val ktx = "1.7.0"
const val kotlinCoroutines = "1.3.9"
const val koin = "2.0.1"

// android
const val supportAppCompat = "1.3.1"
const val constraintLayout = "2.1.0"
const val supportAppCompat = "1.4.0"
const val constraintLayout = "2.1.2"


const val sdp = "1.0.6"
const val ssp = "1.0.6"
const val timber = "4.7.1"
const val timber = "5.0.1"

// arch
const val lifecycle_version = "2.1.0"
const val archVersion = "2.4.0-alpha03"
const val archVersion = "2.4.0"

}

Expand Down
12 changes: 6 additions & 6 deletions customedittextoutlinedborder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ apply plugin: 'maven-publish'
apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "29.0.3"


defaultConfig {
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName "1.0.12"
versionName "1.0.13"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand Down Expand Up @@ -75,9 +75,9 @@ publishing {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'com.intuit.sdp:sdp-android:1.0.6'
implementation 'com.intuit.ssp:ssp-android:1.0.6'
testImplementation 'junit:junit:4.13.2'
Expand Down

0 comments on commit b60f6c4

Please sign in to comment.