File tree Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' com.android.application'
3
3
id ' org.jetbrains.kotlin.android'
4
- id ' maven-publish'
4
+ // id 'maven-publish'
5
5
}
6
6
7
+ def versionStr = " 1.0"
8
+
7
9
android {
8
10
namespace ' com.oguzhanaslann.cropview'
9
11
compileSdk 33
@@ -13,7 +15,7 @@ android {
13
15
minSdk 24
14
16
targetSdk 33
15
17
versionCode 1
16
- versionName " 1.0 "
18
+ versionName versionStr
17
19
}
18
20
19
21
buildTypes {
@@ -35,12 +37,31 @@ android {
35
37
compose true
36
38
}
37
39
composeOptions {
38
- kotlinCompilerExtensionVersion ' 1.4.6 '
40
+ kotlinCompilerExtensionVersion ' 1.5.1 '
39
41
}
40
42
41
43
testFixtures {
42
44
enable = true
43
45
}
46
+
47
+ // publishing {
48
+ // singleVariant('release') {
49
+ // withSourcesJar()
50
+ // }
51
+ //
52
+ // publications {
53
+ // release(MavenPublication) {
54
+ // groupId = 'com.oguzhanaslann.cropview-compose'
55
+ // artifactId = 'cropview-compose'
56
+ // version = versionStr
57
+ //
58
+ // afterEvaluate {
59
+ // from components.release
60
+ // }
61
+ // }
62
+ // }
63
+ //
64
+ // }
44
65
}
45
66
46
67
dependencies {
@@ -49,7 +70,7 @@ dependencies {
49
70
implementation ' androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
50
71
implementation ' androidx.activity:activity-compose:1.7.2'
51
72
52
- def composeBom = platform(' androidx.compose:compose-bom:2023.04 .01' )
73
+ def composeBom = platform(' androidx.compose:compose-bom:2023.06 .01' )
53
74
implementation composeBom
54
75
androidTestImplementation composeBom
55
76
Original file line number Diff line number Diff line change 2
2
plugins {
3
3
id ' com.android.application' version ' 8.1.0' apply false
4
4
id ' com.android.library' version ' 8.1.0' apply false
5
- id ' org.jetbrains.kotlin.android' version ' 1.8.20 ' apply false
5
+ id ' org.jetbrains.kotlin.android' version ' 1.9.0 ' apply false
6
6
}
You can’t perform that action at this time.
0 commit comments