@rock-js/platform-android 0.9.2 → 0.10.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rock-js/platform-android",
3
- "version": "0.9.2",
3
+ "version": "0.10.0",
4
4
  "type": "module",
5
5
  "types": "./dist/src/index.d.ts",
6
6
  "exports": {
@@ -19,14 +19,14 @@
19
19
  "publish:verdaccio": "npm publish --registry http://localhost:4873 --userconfig ../../.npmrc"
20
20
  },
21
21
  "dependencies": {
22
- "@react-native-community/cli-config-android": "^19.1.0",
23
- "@rock-js/tools": "^0.9.2",
22
+ "@react-native-community/cli-config-android": "^20.0.0",
23
+ "@rock-js/tools": "^0.10.0",
24
24
  "adm-zip": "^0.5.16",
25
25
  "tslib": "^2.3.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@react-native-community/cli-types": "^19.1.0",
29
- "@rock-js/config": "^0.9.2",
28
+ "@react-native-community/cli-types": "^20.0.0",
29
+ "@rock-js/config": "^0.10.0",
30
30
  "@types/adm-zip": "^0.5.7"
31
31
  },
32
32
  "publishConfig": {
@@ -1,7 +1,7 @@
1
1
  <resources>
2
2
 
3
3
  <!-- Base application theme. -->
4
- <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
4
+ <style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
5
5
  <!-- Customize your theme here. -->
6
6
  <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
7
7
  </style>
@@ -1,9 +1,9 @@
1
1
  buildscript {
2
2
  ext {
3
- buildToolsVersion = "35.0.0"
3
+ buildToolsVersion = "36.0.0"
4
4
  minSdkVersion = 24
5
- compileSdkVersion = 35
6
- targetSdkVersion = 35
5
+ compileSdkVersion = 36
6
+ targetSdkVersion = 36
7
7
  ndkVersion = "27.1.12297006"
8
8
  kotlinVersion = "2.1.20"
9
9
  }
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
@@ -38,6 +38,11 @@ newArchEnabled=true
38
38
  # If set to false, you will be using JSC instead.
39
39
  hermesEnabled=true
40
40
 
41
+ # Use this property to enable edge-to-edge display support.
42
+ # This allows your app to draw behind system bars for an immersive UI.
43
+ # Note: Only works with ReactActivity and should not be used with custom Activity.
44
+ edgeToEdgeEnabled=true
45
+
41
46
  # Signing configuration – adjust the values and ideally
42
47
  # move the following code to ~/.gradle/gradle.properties to keep it secure
43
48
  ROCK_UPLOAD_STORE_FILE=release.keystore
@@ -4,6 +4,6 @@
4
4
  "android": "rock run:android"
5
5
  },
6
6
  "devDependencies": {
7
- "@rock-js/platform-android": "^0.9.2"
7
+ "@rock-js/platform-android": "^0.10.0"
8
8
  }
9
9
  }