@pi-r/android 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/google-maven-snapshot.json +1 -1
- package/data/google-maven.json +1 -1
- package/extensions/gradle/dependencies/index.js +1 -1
- package/package.json +3 -3
- package/template/java/static/build.gradle +2 -2
- package/template/java+kotlin/static/build.gradle +3 -3
- package/template/kotlin/libs.versions.toml +2 -2
|
@@ -424,7 +424,7 @@ function finalize(instance) {
|
|
|
424
424
|
output = Document.updateGradle(output, ['android', 'buildFeatures'], 'compose = true');
|
|
425
425
|
}
|
|
426
426
|
else {
|
|
427
|
-
const stdLib = instance.findVersion('org.jetbrains.kotlin:kotlin-stdlib', "2.1.
|
|
427
|
+
const stdLib = instance.findVersion('org.jetbrains.kotlin:kotlin-stdlib', "2.1.20");
|
|
428
428
|
output = Document.updateGradle(output, ['plugins'], "id 'org.jetbrains.kotlin.android'", { upgrade: true, multiple: true, addendum: `version '${stdLib}'` });
|
|
429
429
|
output = Document.updateGradle(output, ['android', 'buildFeatures'], "compose true");
|
|
430
430
|
if (stdLib.startsWith('1.')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/android",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Android document constructor for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@e-mc/document": "^0.11.
|
|
24
|
-
"@e-mc/types": "^0.11.
|
|
23
|
+
"@e-mc/document": "^0.11.4",
|
|
24
|
+
"@e-mc/types": "^0.11.4",
|
|
25
25
|
"dom-serializer": "*",
|
|
26
26
|
"domhandler": "*",
|
|
27
27
|
"domutils": "*",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
plugins {
|
|
2
|
-
id 'com.android.application' version '8.
|
|
3
|
-
id 'com.android.library' version '8.
|
|
4
|
-
id 'org.jetbrains.kotlin.android' version '2.1.
|
|
2
|
+
id 'com.android.application' version '8.9.1' apply false
|
|
3
|
+
id 'com.android.library' version '8.9.1' apply false
|
|
4
|
+
id 'org.jetbrains.kotlin.android' version '2.1.20' apply false
|
|
5
5
|
}
|