Skip to content

Commit 259038a

Browse files
committed
completed
1 parent 51fa295 commit 259038a

File tree

12 files changed

+281
-2
lines changed

12 files changed

+281
-2
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 54 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SmartFileBrowser/src/main/AndroidManifest.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="ir.smartdevelopers.smartfilebrowser">
5-
<uses-feature android:name="android.hardware.Camera"
5+
6+
7+
<uses-feature android:name="android.hardware.camera.any"
68
android:required="false"/>
79
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
810
tools:ignore="ScopedStorage" />
@@ -13,9 +15,15 @@
1315
android:theme="@style/sfb_AppTheme"
1416
android:configChanges="keyboard|orientation"
1517
/>
18+
<activity
19+
android:name="iamutkarshtiwari.github.io.ananas.editimage.EditImageActivity"
20+
android:exported="true"
21+
android:label="@string/sfb_image_editor_label"
22+
android:theme="@style/sfb_EditorTheme"
23+
tools:replace="android:label" />
1624
<provider
1725
android:authorities="${applicationId}.provider"
18-
android:name="androidx.core.content.FileProvider"
26+
android:name=".customClasses.SmartFileProvider"
1927
android:exported="false"
2028
android:grantUriPermissions="true">
2129
<meta-data

0 commit comments

Comments
 (0)