File tree Expand file tree Collapse file tree 15 files changed +65
-56
lines changed Expand file tree Collapse file tree 15 files changed +65
-56
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
// Top-level build file where you can add configuration options common to all sub-projects/modules.
4
4
buildscript {
5
5
ext {
6
- kotlin_version = " 1.6.10 "
6
+ kotlin_version = ' 1.6.21 '
7
7
workflow_version = " 1.7.1"
8
8
9
9
deps = [
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdk = 32
8
8
9
9
defaultConfig {
10
10
applicationId " com.squareup.workflow.tutorial"
11
- minSdkVersion 21
12
- targetSdkVersion 30
11
+ minSdk = 21
12
+ targetSdk = 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
@@ -23,6 +23,7 @@ android {
23
23
kotlinOptions {
24
24
jvmTarget = ' 1.8'
25
25
}
26
+ namespace ' workflow.tutorial'
26
27
}
27
28
28
29
dependencies {
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 =" workflow.tutorial" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<application
6
5
android : allowBackup =" true"
9
8
android : roundIcon =" @mipmap/ic_launcher_round"
10
9
android : supportsRtl =" true"
11
10
android : theme =" @style/Theme.WorkflowTutorial" >
12
- <activity android : name =" .TutorialActivity" >
11
+ <activity
12
+ android : name =" .TutorialActivity"
13
+ android : exported =" true" >
13
14
<intent-filter >
14
- <action android : name =" android.intent.action.MAIN" />
15
+ <action android : name =" android.intent.action.MAIN" />
15
16
16
- <category android : name =" android.intent.category.LAUNCHER" />
17
+ <category android : name =" android.intent.category.LAUNCHER" />
17
18
</intent-filter >
18
19
</activity >
19
20
</application >
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdk = 32
8
8
9
9
defaultConfig {
10
10
applicationId " workflow.tutorial"
11
- minSdkVersion 21
12
- targetSdkVersion 30
11
+ minSdk = 21
12
+ targetSdk = 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
@@ -23,6 +23,7 @@ android {
23
23
kotlinOptions {
24
24
jvmTarget = ' 1.8'
25
25
}
26
+ namespace ' workflow.tutorial'
26
27
}
27
28
28
29
dependencies {
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 =" workflow.tutorial" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<application
6
5
android : allowBackup =" true"
9
8
android : roundIcon =" @mipmap/ic_launcher_round"
10
9
android : supportsRtl =" true"
11
10
android : theme =" @style/Theme.WorkflowTutorial" >
12
- <activity android : name =" .TutorialActivity" >
11
+ <activity
12
+ android : name =" .TutorialActivity"
13
+ android : exported =" true" >
13
14
<intent-filter >
14
- <action android : name =" android.intent.action.MAIN" />
15
+ <action android : name =" android.intent.action.MAIN" />
15
16
16
- <category android : name =" android.intent.category.LAUNCHER" />
17
+ <category android : name =" android.intent.category.LAUNCHER" />
17
18
</intent-filter >
18
19
</activity >
19
20
</application >
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdk = 32
8
8
9
9
defaultConfig {
10
10
applicationId " workflow.tutorial"
11
- minSdkVersion 21
12
- targetSdkVersion 30
11
+ minSdk = 21
12
+ targetSdk = 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
@@ -23,6 +23,7 @@ android {
23
23
kotlinOptions {
24
24
jvmTarget = ' 1.8'
25
25
}
26
+ namespace ' workflow.tutorial'
26
27
}
27
28
28
29
dependencies {
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 =" workflow.tutorial" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<application
6
5
android : allowBackup =" true"
9
8
android : roundIcon =" @mipmap/ic_launcher_round"
10
9
android : supportsRtl =" true"
11
10
android : theme =" @style/Theme.WorkflowTutorial" >
12
- <activity android : name =" .TutorialActivity" >
11
+ <activity
12
+ android : name =" .TutorialActivity"
13
+ android : exported =" true" >
13
14
<intent-filter >
14
- <action android : name =" android.intent.action.MAIN" />
15
+ <action android : name =" android.intent.action.MAIN" />
15
16
16
- <category android : name =" android.intent.category.LAUNCHER" />
17
+ <category android : name =" android.intent.category.LAUNCHER" />
17
18
</intent-filter >
18
19
</activity >
19
20
</application >
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdk = 32
8
8
9
9
defaultConfig {
10
10
applicationId " workflow.tutorial"
11
- minSdkVersion 21
12
- targetSdkVersion 30
11
+ minSdk = 21
12
+ targetSdk = 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
@@ -23,6 +23,7 @@ android {
23
23
kotlinOptions {
24
24
jvmTarget = ' 1.8'
25
25
}
26
+ namespace ' workflow.tutorial'
26
27
}
27
28
28
29
dependencies {
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 =" workflow.tutorial" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<application
6
5
android : allowBackup =" true"
9
8
android : roundIcon =" @mipmap/ic_launcher_round"
10
9
android : supportsRtl =" true"
11
10
android : theme =" @style/Theme.WorkflowTutorial" >
12
- <activity android : name =" .TutorialActivity" >
11
+ <activity
12
+ android : name =" .TutorialActivity"
13
+ android : exported =" true" >
13
14
<intent-filter >
14
- <action android : name =" android.intent.action.MAIN" />
15
+ <action android : name =" android.intent.action.MAIN" />
15
16
16
- <category android : name =" android.intent.category.LAUNCHER" />
17
+ <category android : name =" android.intent.category.LAUNCHER" />
17
18
</intent-filter >
18
19
</activity >
19
20
</application >
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion 31
7
+ compileSdk = 32
8
8
9
9
defaultConfig {
10
10
applicationId " workflow.tutorial"
11
- minSdkVersion 21
12
- targetSdkVersion 30
11
+ minSdk = 21
12
+ targetSdk = 32
13
13
versionCode 1
14
14
versionName " 1.0"
15
15
@@ -23,6 +23,7 @@ android {
23
23
kotlinOptions {
24
24
jvmTarget = ' 1.8'
25
25
}
26
+ namespace ' workflow.tutorial'
26
27
}
27
28
28
29
dependencies {
You can’t perform that action at this time.
0 commit comments