Skip to content

Commit

Permalink
fix: 안드로이드 안쓰는 권한삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
nain93 committed Aug 15, 2023
1 parent e254b30 commit 958cca4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,10 @@

<!-- Permissions options for the `storage` group -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />

<!-- Permissions options for the `camera` group -->
<uses-permission android:name="android.permission.CAMERA"/>

<!-- Permissions options for the `location` group -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />

<!-- android:launchMode="singleTop" -->
<application android:label="@string/app_name" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/add_content/add_link_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class AddLinkContent extends HookConsumerWidget {
?.attributes['content'];

if (crawledTitle != null && crawledTitle.length > 30) {
crawledTitle = '${crawledTitle.substring(0, 30)}...';
crawledTitle = crawledTitle.substring(0, 30);
}
var crawledDescription = document.head
?.querySelector("meta[property='og:description']")
Expand Down

0 comments on commit 958cca4

Please sign in to comment.