-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from eszdman/dev
Dev
- Loading branch information
Showing
333 changed files
with
17,309 additions
and
5,253 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Use this section to tell people about which versions of your project are | ||
currently being supported with security updates. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 5.1.x | :white_check_mark: | | ||
| 5.0.x | :x: | | ||
| 4.0.x | :white_check_mark: | | ||
| < 4.0 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
Use this section to tell people how to report a vulnerability. | ||
|
||
Tell them where to go, how often they can expect to get an update on a | ||
reported vulnerability, what to expect if the vulnerability is accepted or | ||
declined, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,61 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.eszdman.photoncamera"> | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.eszdman.photoncamera"> | ||
|
||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
<uses-permission android:name="android.permission.CAMERA"/> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.WAKE_LOCK"/> | ||
|
||
<uses-feature | ||
android:name="android.hardware.camera" | ||
android:required="true" /> | ||
<uses-feature android:name="android.hardware.camera.autofocus" /> | ||
android:name="android.hardware.camera" | ||
android:required="true"/> | ||
<uses-feature android:name="android.hardware.camera.autofocus"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:hardwareAccelerated="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:largeHeap="true" | ||
android:isGame="true" | ||
android:requestLegacyExternalStorage="true" | ||
android:roundIcon="@drawable/ic_launcher" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme" | ||
> | ||
<activity android:name=".ui.SettingsActivity" /> | ||
<activity android:name=".ui.MainActivity"> | ||
android:name=".app.PhotonCamera" | ||
android:allowBackup="true" | ||
android:hardwareAccelerated="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:requestLegacyExternalStorage="true" | ||
android:label="@string/app_name" | ||
android:largeHeap="true" | ||
android:isGame="true" | ||
android:supportsRtl="true" | ||
android:theme="@style/Theme.Photon.BaseApp" | ||
tools:targetApi="q"> | ||
<activity | ||
android:name=".ui.settings.SettingsActivity" | ||
android:theme="@style/Theme.Photon.SettingsActivity"/> | ||
<activity | ||
android:name=".ui.SplashActivity" | ||
android:theme="@style/Theme.Photon.Splash"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<action android:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name=".ui.camera.CameraActivity" | ||
android:configChanges="orientation|keyboardHidden|screenSize"/> | ||
|
||
<activity android:name=".gallery.GalleryActivity"/> | ||
|
||
<provider | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="${applicationId}.provider" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/filepaths"/> | ||
</provider> | ||
|
||
<meta-data | ||
android:name="firebase_performance_logcat_enabled" | ||
android:value="true" /> | ||
android:name="firebase_performance_logcat_enabled" | ||
android:value="false"/> | ||
</application> | ||
|
||
</manifest> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.