Skip to content

Commit a6a95bf

Browse files
authored
Merge pull request #23 from ClayPulse/dev
Add marketplace API in editor panel
2 parents c76ecaa + e275a32 commit a6a95bf

File tree

20 files changed

+769
-2356
lines changed

20 files changed

+769
-2356
lines changed

mobile/android/app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
33
<application
44
android:allowBackup="true"
55
android:icon="@mipmap/ic_launcher"
66
android:label="@string/app_name"
77
android:roundIcon="@mipmap/ic_launcher_round"
88
android:supportsRtl="true"
9-
android:theme="@style/AppTheme">
9+
android:theme="@style/AppTheme"
10+
android:networkSecurityConfig="@xml/network_security_config"
11+
>
1012
<activity
1113
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
1214
android:name=".MainActivity"
@@ -25,7 +27,8 @@
2527
android:authorities="${applicationId}.fileprovider"
2628
android:exported="false"
2729
android:grantUriPermissions="true">
28-
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
30+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
31+
android:resource="@xml/file_paths" />
2932
</provider>
3033
</application>
3134

@@ -39,4 +42,4 @@
3942
<!-- Storage -->
4043
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
4144
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
42-
</manifest>
45+
</manifest>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<network-security-config>
3+
<domain-config cleartextTrafficPermitted="true">
4+
<domain includeSubdomains="true">localhost</domain>
5+
</domain-config>
6+
</network-security-config>

mobile/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.2.1'
10+
classpath 'com.android.tools.build:gradle:8.7.3'
1111
classpath 'com.google.gms:google-services:4.4.0'
1212

1313
// NOTE: Do not place your application dependencies here; they belong

mobile/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

npm-packages/react-api/package.json

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,26 @@
88
"lint": "eslint ."
99
},
1010
"devDependencies": {
11-
"@babel/core": "^7.26.0",
12-
"@babel/preset-env": "^7.26.0",
13-
"@eslint/js": "^9.18.0",
11+
"@babel/core": "^7.26.10",
12+
"@babel/preset-env": "^7.26.9",
13+
"@eslint/js": "^9.25.0",
1414
"@rollup/plugin-babel": "^6.0.4",
15-
"@rollup/plugin-node-resolve": "^16.0.0",
15+
"@rollup/plugin-node-resolve": "^16.0.1",
1616
"@rollup/plugin-terser": "^0.4.4",
1717
"@rollup/plugin-typescript": "^12.1.2",
18-
"@types/react": "^19.0.7",
19-
"autoprefixer": "^10.4.20",
20-
"eslint": "^9.18.0",
21-
"eslint-plugin-react": "^7.37.4",
22-
"globals": "^15.14.0",
18+
"@types/react": "^19.1.2",
19+
"autoprefixer": "^10.4.21",
20+
"eslint": "^9.25.0",
21+
"eslint-plugin-react": "^7.37.5",
22+
"globals": "^16.0.0",
2323
"install": "^0.13.0",
24-
"npm": "^11.0.0",
25-
"postcss": "^8.5.1",
26-
"postcss-loader": "^8.1.1",
27-
"react": "^19.0.0",
28-
"react-dom": "^19.0.0",
29-
"rollup": "^4.31.0",
24+
"npm": "^11.3.0",
25+
"react": "^19.1.0",
26+
"react-dom": "^19.1.0",
27+
"rollup": "^4.40.0",
3028
"rollup-plugin-peer-deps-external": "^2.2.4",
31-
"rollup-plugin-postcss": "^4.0.2",
32-
"tailwindcss": "^3.4.17",
33-
"typescript": "^5.7.3",
34-
"typescript-eslint": "^8.20.0"
29+
"typescript": "^5.8.3",
30+
"typescript-eslint": "^8.30.1"
3531
},
3632
"peerDependencies": {
3733
"react": "^19.0.0",

npm-packages/react-api/rollup.config.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import resolve from "@rollup/plugin-node-resolve";
22
import peerDepsExternal from "rollup-plugin-peer-deps-external";
33
import babel from "@rollup/plugin-babel";
44
import typescript from "@rollup/plugin-typescript";
5-
import postcss from "rollup-plugin-postcss";
65
import terser from "@rollup/plugin-terser";
76

87
// rollup.config.mjs
@@ -20,10 +19,6 @@ export default {
2019
},
2120
],
2221
plugins: [
23-
postcss({
24-
plugins: [],
25-
minimize: true,
26-
}),
2722
resolve({
2823
extensions: [".js", ".ts", ".tsx", ".jsx"],
2924
}),

npm-packages/react-api/src/tailwind.css

Lines changed: 0 additions & 21 deletions
This file was deleted.

npm-packages/react-api/tailwind.config.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)