Skip to content

Commit f561c84

Browse files
committed
Run Gradle updates & other housekeeping
1 parent 1761c37 commit f561c84

File tree

5 files changed

+16
-19
lines changed

5 files changed

+16
-19
lines changed

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+8-10
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ apply plugin: 'com.android.application'
22

33
apply plugin: 'kotlin-android'
44

5-
apply plugin: 'kotlin-android-extensions'
6-
75
android {
8-
compileSdkVersion 29
9-
buildToolsVersion "29.0.2"
6+
compileSdkVersion 33
107
defaultConfig {
118
applicationId "dev.linus.lacapitaine"
129
minSdkVersion 15
13-
targetSdkVersion 29
10+
targetSdkVersion 33
1411
versionCode 1
1512
versionName "1.0"
1613
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -21,14 +18,15 @@ android {
2118
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2219
}
2320
}
21+
namespace 'dev.linus.lacapitaine'
2422
}
2523

2624
dependencies {
2725
implementation fileTree(dir: 'libs', include: ['*.jar'])
2826
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
29-
implementation 'androidx.appcompat:appcompat:1.0.2'
30-
implementation 'androidx.core:core-ktx:1.0.2'
31-
testImplementation 'junit:junit:4.12'
32-
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
33-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
27+
implementation 'androidx.appcompat:appcompat:1.5.1'
28+
implementation 'androidx.core:core-ktx:1.9.0'
29+
testImplementation 'junit:junit:4.13.2'
30+
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
31+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
3432
}

app/src/main/AndroidManifest.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="dev.linus.lacapitaine">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"
@@ -10,7 +9,7 @@
109
android:supportsRtl="true"
1110
android:theme="@style/AppTheme">
1211

13-
<activity android:name=".MainActivity">
12+
<activity android:name=".MainActivity" android:exported="false">
1413

1514
<intent-filter>
1615
<action android:name="android.intent.action.MAIN" />

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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.50'
4+
ext.kotlin_version = '1.7.21'
55
repositories {
66
google()
7-
jcenter()
7+
mavenCentral()
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.0.0'
11+
classpath 'com.android.tools.build:gradle:7.3.1'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
@@ -18,7 +18,7 @@ buildscript {
1818
allprojects {
1919
repositories {
2020
google()
21-
jcenter()
21+
mavenCentral()
2222

2323
}
2424
}

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip

0 commit comments

Comments
 (0)