Skip to content

Commit b64bf8b

Browse files
committed
feat: update package/namespace name + update version
1 parent fb7178e commit b64bf8b

6 files changed

Lines changed: 20 additions & 19 deletions

File tree

compiler-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
alias(libs.plugins.vanniktech.publish)
1010
}
1111

12-
val libGroup = "io.tolgee"
12+
val libGroup = "io.tolgee.mobile-koltin-sdk"
1313
val libName = "compiler-plugin"
1414

1515
group = libGroup

compose/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
signing
1515
}
1616

17-
val libGroup = "io.tolgee"
17+
val libGroup = "io.tolgee.mobile-koltin-sdk"
1818
val libName = "compose"
1919

2020
group = libGroup
@@ -75,7 +75,7 @@ kotlin {
7575

7676
android {
7777
compileSdk = 35
78-
namespace = "io.tolgee.compose"
78+
namespace = "io.tolgee.mobilekoltinsdk.compose"
7979

8080
defaultConfig {
8181
minSdk = 21

core/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
signing
1616
}
1717

18-
val libGroup = "io.tolgee"
18+
val libGroup = "io.tolgee.mobile-koltin-sdk"
1919
val libName = "core"
2020
val appleFramework = "Tolgee"
2121

@@ -233,7 +233,7 @@ kotlin {
233233

234234
android {
235235
compileSdk = 35
236-
namespace = "io.tolgee.core"
236+
namespace = "io.tolgee.mobilekoltinsdk.core"
237237

238238
defaultConfig {
239239
minSdk = 21

demo/exampleandroid/build.gradle.kts

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
alias(libs.plugins.android.application)
33
alias(libs.plugins.android)
4-
alias(libs.plugins.tolgee)
4+
// alias(libs.plugins.tolgee) // uncomment to enable compiler plugin
55
}
66

77
android {
@@ -30,16 +30,17 @@ android {
3030
}
3131
}
3232

33-
tolgee {
34-
// change compile time behavior
35-
compilerPlugin {
36-
android {
37-
// Replaces Context.getString occurrences with Context.getStringT (tolgee extension)
38-
replaceGetString.set(true) // default true
39-
replacePluralString.set(true) // default true
40-
}
41-
}
42-
}
33+
// Uncomment to change configuration of compiler plugin
34+
//tolgee {
35+
// // change compile time behavior
36+
// compilerPlugin {
37+
// android {
38+
// // Replaces Context.getString occurrences with Context.getStringT (tolgee extension)
39+
// replaceGetString.set(true) // default true
40+
// replacePluralString.set(true) // default true
41+
// }
42+
// }
43+
//}
4344

4445
dependencies {
4546
implementation(libs.android)

gradle-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
signing
1414
}
1515

16-
val libGroup = "io.tolgee"
16+
val libGroup = "io.tolgee.mobile-koltin-sdk"
1717
val libName = "gradle-plugin"
1818

1919
group = libGroup

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
44

55
[versions]
6-
library = "1.0.0-alpha01"
6+
library = "1.0.0-beta01"
77
activity = "1.10.1"
88
android-core = "1.16.0"
99
android-tools = "8.10.1"
@@ -90,4 +90,4 @@ native-coroutines = { id = "com.rickclephas.kmp.nativecoroutines", version.ref =
9090
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
9191
vanniktech-publish = { id = "com.vanniktech.maven.publish", version.ref = "publish" }
9292
versions = { id = "com.github.ben-manes.versions", version.ref = "versions" }
93-
tolgee = { id = "io.tolgee", version.ref = "library" }
93+
tolgee = { id = "io.tolgee.mobile-koltin-sdk", version.ref = "library" }

0 commit comments

Comments
 (0)