Skip to content

Commit 4397dce

Browse files
committed
updating kotlin, commons, gradle
1 parent ea6ff93 commit 4397dce

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ android {
5151
}
5252

5353
dependencies {
54-
implementation 'com.simplemobiletools:commons:5.13.14'
54+
implementation 'com.simplemobiletools:commons:5.15.22'
5555
implementation 'joda-time:joda-time:2.10.1'
56-
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta1'
56+
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
5757
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
5858

59-
kapt "androidx.room:room-compiler:2.0.0"
60-
implementation "androidx.room:room-runtime:2.0.0"
61-
annotationProcessor "androidx.room:room-compiler:2.0.0"
59+
kapt "androidx.room:room-compiler:2.1.0"
60+
implementation "androidx.room:room-runtime:2.1.0"
61+
annotationProcessor "androidx.room:room-compiler:2.1.0"
6262
}

app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/SplashActivity.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import android.content.Intent
44
import com.simplemobiletools.commons.activities.BaseSplashActivity
55

66
class SplashActivity : BaseSplashActivity() {
7-
override fun getAppPackageName() = packageName
8-
97
override fun initActivity() {
108
startActivity(Intent(this, MainActivity::class.java))
119
finish()

app/src/main/res/values/donottranslate.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3+
<string name="package_name">com.simplemobiletools.contacts.pro</string>
34

45
<string name="im">IM</string>
56
<string name="aim">AIM</string>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.3.31'
4+
ext.kotlin_version = '1.3.41'
55

66
repositories {
77
google()
88
jcenter()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:3.4.1'
12+
classpath 'com.android.tools.build:gradle:3.4.2'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

1515
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)