File tree 5 files changed +16
-19
lines changed
5 files changed +16
-19
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,12 @@ apply plugin: 'com.android.application'
2
2
3
3
apply plugin : ' kotlin-android'
4
4
5
- apply plugin : ' kotlin-android-extensions'
6
-
7
5
android {
8
- compileSdkVersion 29
9
- buildToolsVersion " 29.0.2"
6
+ compileSdkVersion 33
10
7
defaultConfig {
11
8
applicationId " dev.linus.lacapitaine"
12
9
minSdkVersion 15
13
- targetSdkVersion 29
10
+ targetSdkVersion 33
14
11
versionCode 1
15
12
versionName " 1.0"
16
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -21,14 +18,15 @@ android {
21
18
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
22
19
}
23
20
}
21
+ namespace ' dev.linus.lacapitaine'
24
22
}
25
23
26
24
dependencies {
27
25
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
28
26
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 '
34
32
}
Original file line number Diff line number Diff line change 1
1
<?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" >
4
3
5
4
<application
6
5
android : allowBackup =" true"
10
9
android : supportsRtl =" true"
11
10
android : theme =" @style/AppTheme" >
12
11
13
- <activity android : name =" .MainActivity" >
12
+ <activity android : name =" .MainActivity" android : exported = " false " >
14
13
15
14
<intent-filter >
16
15
<action android : name =" android.intent.action.MAIN" />
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.3.50 '
4
+ ext. kotlin_version = ' 1.7.21 '
5
5
repositories {
6
6
google()
7
- jcenter ()
7
+ mavenCentral ()
8
8
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:7.0.0 '
11
+ classpath ' com.android.tools.build:gradle:7.3.1 '
12
12
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13
13
// NOTE: Do not place your application dependencies here; they belong
14
14
// in the individual module build.gradle files
@@ -18,7 +18,7 @@ buildscript {
18
18
allprojects {
19
19
repositories {
20
20
google()
21
- jcenter ()
21
+ mavenCentral ()
22
22
23
23
}
24
24
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
You can’t perform that action at this time.
0 commit comments