Skip to content

Commit 99dc90d

Browse files
committed
Fix manifest typo
1 parent 871c0c3 commit 99dc90d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Boilerplate/Components/AndroidManifest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const AndroidManifest = (props: Props) => {
3232
};
3333
const addF = (feature: string) => {
3434
return `
35-
<uses-feature android:name="android.permission.${feature.toUpperCase()}" android:required="false" />`;
35+
<uses-feature android:name="android.hardware.${feature.toUpperCase()}" android:required="false" />`;
3636
};
3737
const has = (feature: string): boolean => {
3838
return Data.hasComponent(feature, props.components);

0 commit comments

Comments
 (0)