File tree 5 files changed +12
-6
lines changed
stem-plugin/src/test/assets/outputs/with_gradle_strings/main/values
5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
+ Version 2.10.1 * (04-08-2024)*
4
+ ---
5
+
6
+ * Supporting strings with html tags that contain quotes.
7
+ * Keeping quotes as they are defined in the original strings.
8
+
3
9
Version 2.10.0 * (28-07-2024)*
4
10
---
5
11
Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ In your `App's build.gradle` file you have to add the following line after the a
346
346
one:
347
347
348
348
``` groovy
349
- id "com.likethesalad.stem" version "2.10.0 "
349
+ id "com.likethesalad.stem" version "2.10.1 "
350
350
```
351
351
352
352
Example:
@@ -355,7 +355,7 @@ Example:
355
355
// App's build.gradle file
356
356
plugins {
357
357
id "com.android.application"
358
- id "com.likethesalad.stem" version "2.10.0 "
358
+ id "com.likethesalad.stem" version "2.10.1 "
359
359
}
360
360
361
361
android {
@@ -372,7 +372,7 @@ can do so by applying a "producer" version of Stem into them like so:
372
372
// Android library's build.gradle file
373
373
plugins {
374
374
id "com.android.library"
375
- id "com.likethesalad.stem-library" version "2.10.0 "
375
+ id "com.likethesalad.stem-library" version "2.10.1 "
376
376
}
377
377
378
378
android {
Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
group =com.likethesalad.android
3
- version =2.9.0
3
+ version =2.10.1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dagger = "2.51.1"
4
4
android = " 8.2.1"
5
5
6
6
[libraries ]
7
- resourceLocator = " com.likethesalad.tools.resources:string-android-resource-locator:2.3.0 "
7
+ resourceLocator = " com.likethesalad.tools.resources:string-android-resource-locator:2.3.1 "
8
8
androidCompatApi = { module = " com.likethesalad.tools:agp-compatibility-api" , version.ref = " project-utilities" }
9
9
dagger = { module = " com.google.dagger:dagger" , version.ref = " dagger" }
10
10
dagger-compiler = { module = " com.google.dagger:dagger-compiler" , version.ref = " dagger" }
Original file line number Diff line number Diff line change 1
1
<resources >
2
- <string name =" welcome_message" >Welcome to With Gradle strings, which id is: APP ID</string >
2
+ <string name =" welcome_message" >Welcome to With Gradle strings, which id is: " APP ID" </string >
3
3
</resources >
You can’t perform that action at this time.
0 commit comments