expo-build-properties 0.14.2 → 0.14.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/CHANGELOG.md +4 -0
- package/build/pluginConfig.d.ts +6 -3
- package/package.json +2 -2
- package/src/pluginConfig.ts +6 -3
package/CHANGELOG.md
CHANGED
package/build/pluginConfig.d.ts
CHANGED
|
@@ -388,12 +388,13 @@ export interface PluginConfigTypeAndroidQueries {
|
|
|
388
388
|
* Specifies an intent filter signature. Your app can discover other apps that have matching `<intent-filter>` elements.
|
|
389
389
|
* These intents have restrictions compared to typical intent filter signatures.
|
|
390
390
|
*
|
|
391
|
-
* @see [Android documentation](https://developer.android.com/training/package-visibility/declaring#intent-filter-signature) for
|
|
391
|
+
* @see [Android documentation](https://developer.android.com/training/package-visibility/declaring#intent-filter-signature) for more information.
|
|
392
392
|
*/
|
|
393
393
|
intent?: PluginConfigTypeAndroidQueriesIntent[];
|
|
394
394
|
/**
|
|
395
395
|
* Specifies one or more content provider authorities. Your app can discover other apps whose content providers use the specified authorities.
|
|
396
|
-
* There are some restrictions on the options that you can include in this `<provider>` element, compared to a typical `<provider>` manifest element.
|
|
396
|
+
* There are some restrictions on the options that you can include in this `<provider>` element, compared to a typical `<provider>` manifest element.
|
|
397
|
+
* You may only specify the `android:authorities` attribute.
|
|
397
398
|
*/
|
|
398
399
|
provider?: string[];
|
|
399
400
|
}
|
|
@@ -402,7 +403,9 @@ export interface PluginConfigTypeAndroidQueries {
|
|
|
402
403
|
*/
|
|
403
404
|
export interface PluginConfigTypeAndroidQueriesIntent {
|
|
404
405
|
/**
|
|
405
|
-
* A string naming the action to perform. Usually one of the platform-defined values, such as `
|
|
406
|
+
* A string naming the action to perform. Usually one of the platform-defined values, such as `SEND` or `VIEW`.
|
|
407
|
+
*
|
|
408
|
+
* @see [Android documentation](https://developer.android.com/guide/topics/manifest/action-element) for more information.
|
|
406
409
|
*/
|
|
407
410
|
action?: string;
|
|
408
411
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-build-properties",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"description": "Config plugin to customize native build properties on prebuild",
|
|
5
5
|
"main": "build/withBuildProperties.js",
|
|
6
6
|
"types": "build/withBuildProperties.d.ts",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"expo": "*"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "dd2c7150fd75c56505aa6d3f805c14e255649c5d"
|
|
44
44
|
}
|
package/src/pluginConfig.ts
CHANGED
|
@@ -438,12 +438,13 @@ export interface PluginConfigTypeAndroidQueries {
|
|
|
438
438
|
* Specifies an intent filter signature. Your app can discover other apps that have matching `<intent-filter>` elements.
|
|
439
439
|
* These intents have restrictions compared to typical intent filter signatures.
|
|
440
440
|
*
|
|
441
|
-
* @see [Android documentation](https://developer.android.com/training/package-visibility/declaring#intent-filter-signature) for
|
|
441
|
+
* @see [Android documentation](https://developer.android.com/training/package-visibility/declaring#intent-filter-signature) for more information.
|
|
442
442
|
*/
|
|
443
443
|
intent?: PluginConfigTypeAndroidQueriesIntent[];
|
|
444
444
|
/**
|
|
445
445
|
* Specifies one or more content provider authorities. Your app can discover other apps whose content providers use the specified authorities.
|
|
446
|
-
* There are some restrictions on the options that you can include in this `<provider>` element, compared to a typical `<provider>` manifest element.
|
|
446
|
+
* There are some restrictions on the options that you can include in this `<provider>` element, compared to a typical `<provider>` manifest element.
|
|
447
|
+
* You may only specify the `android:authorities` attribute.
|
|
447
448
|
*/
|
|
448
449
|
provider?: string[];
|
|
449
450
|
}
|
|
@@ -454,7 +455,9 @@ export interface PluginConfigTypeAndroidQueries {
|
|
|
454
455
|
*/
|
|
455
456
|
export interface PluginConfigTypeAndroidQueriesIntent {
|
|
456
457
|
/**
|
|
457
|
-
* A string naming the action to perform. Usually one of the platform-defined values, such as `
|
|
458
|
+
* A string naming the action to perform. Usually one of the platform-defined values, such as `SEND` or `VIEW`.
|
|
459
|
+
*
|
|
460
|
+
* @see [Android documentation](https://developer.android.com/guide/topics/manifest/action-element) for more information.
|
|
458
461
|
*/
|
|
459
462
|
action?: string;
|
|
460
463
|
/**
|