@react-native/gradle-plugin 0.81.0-rc.0 → 0.81.0-rc.2
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/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/package.json +1 -1
- package/react-native-gradle-plugin/src/main/kotlin/com/facebook/react/tasks/GeneratePackageListTask.kt +1 -0
- package/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/tasks/GeneratePackageListTaskTest.kt +3 -1
|
@@ -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.
|
|
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
|
package/package.json
CHANGED
|
@@ -233,6 +233,7 @@ class GeneratePackageListTaskTest {
|
|
|
233
233
|
|
|
234
234
|
|
|
235
235
|
|
|
236
|
+
@SuppressWarnings("deprecation")
|
|
236
237
|
public class PackageList {
|
|
237
238
|
private Application application;
|
|
238
239
|
private ReactNativeHost reactNativeHost;
|
|
@@ -311,7 +312,8 @@ class GeneratePackageListTaskTest {
|
|
|
311
312
|
import com.facebook.react.aPackage;
|
|
312
313
|
// @react-native/another-package
|
|
313
314
|
import com.facebook.react.anotherPackage;
|
|
314
|
-
|
|
315
|
+
|
|
316
|
+
@SuppressWarnings("deprecation")
|
|
315
317
|
public class PackageList {
|
|
316
318
|
private Application application;
|
|
317
319
|
private ReactNativeHost reactNativeHost;
|