| @@ -1,6 +1,13 @@ | |||||||
| Changelog | Changelog | ||||||
| ========== | ========== | ||||||
|  |  | ||||||
|  | Version 4.0.0 *(2018-05-15)* | ||||||
|  | ---------------------------- | ||||||
|  |  | ||||||
|  |  * Allow customizing the app launcher icon color | ||||||
|  |  * Split settings into subsections | ||||||
|  |  * Couple smaller bugfixes and stability improvements | ||||||
|  |  | ||||||
| Version 3.2.1 *(2018-04-08)* | Version 3.2.1 *(2018-04-08)* | ||||||
| ---------------------------- | ---------------------------- | ||||||
|  |  | ||||||
|   | |||||||
| @@ -10,8 +10,8 @@ android { | |||||||
|         applicationId "com.simplemobiletools.camera" |         applicationId "com.simplemobiletools.camera" | ||||||
|         minSdkVersion 16 |         minSdkVersion 16 | ||||||
|         targetSdkVersion 27 |         targetSdkVersion 27 | ||||||
|         versionCode 57 |         versionCode 58 | ||||||
|         versionName "3.2.1" |         versionName "4.0.0" | ||||||
|         setProperty("archivesBaseName", "camera") |         setProperty("archivesBaseName", "camera") | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -45,7 +45,7 @@ ext { | |||||||
| } | } | ||||||
|  |  | ||||||
| dependencies { | dependencies { | ||||||
|     implementation 'com.simplemobiletools:commons:3.19.10' |     implementation 'com.simplemobiletools:commons:4.0.18' | ||||||
|  |  | ||||||
|     debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion" |     debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion" | ||||||
|     releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion" |     releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion" | ||||||
|   | |||||||
| @@ -116,5 +116,252 @@ | |||||||
|                 android:name="android.support.FILE_PROVIDER_PATHS" |                 android:name="android.support.FILE_PROVIDER_PATHS" | ||||||
|                 android:resource="@xml/provider_paths"/> |                 android:resource="@xml/provider_paths"/> | ||||||
|         </provider> |         </provider> | ||||||
|  |  | ||||||
|  |         <!-- Do not append ".Orange" to the default alias "name", it would remove the old homescreen launcher of users at upgrade --> | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity" | ||||||
|  |             android:enabled="true" | ||||||
|  |             android:icon="@mipmap/ic_launcher" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Red" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_red" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_red" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Pink" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_pink" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_pink" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Purple" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_purple" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_purple" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Deep_purple" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_deep_purple" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_deep_purple" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Indigo" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_indigo" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_indigo" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Blue" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_blue" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_blue" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Light_blue" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_light_blue" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_light_blue" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Cyan" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_cyan" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_cyan" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Teal" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_teal" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_teal" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Green" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_green" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_green" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Light_green" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_light_green" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_light_green" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Lime" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_lime" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_lime" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Yellow" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_yellow" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_yellow" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Amber" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_amber" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_amber" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Deep_orange" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_deep_orange" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_deep_orange" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Brown" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_brown" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_brown" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Blue_grey" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_blue_grey" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_blue_grey" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|  |  | ||||||
|  |         <activity-alias | ||||||
|  |             android:name=".activities.SplashActivity.Grey_black" | ||||||
|  |             android:enabled="false" | ||||||
|  |             android:icon="@mipmap/ic_launcher_grey_black" | ||||||
|  |             android:roundIcon="@mipmap/ic_launcher_grey_black" | ||||||
|  |             android:targetActivity=".activities.SplashActivity"> | ||||||
|  |  | ||||||
|  |             <intent-filter> | ||||||
|  |                 <action android:name="android.intent.action.MAIN"/> | ||||||
|  |                 <category android:name="android.intent.category.LAUNCHER"/> | ||||||
|  |             </intent-filter> | ||||||
|  |         </activity-alias> | ||||||
|     </application> |     </application> | ||||||
| </manifest> | </manifest> | ||||||
|   | |||||||
| @@ -55,7 +55,7 @@ class MainActivity : SimpleActivity(), PreviewListener, PhotoProcessor.MediaSave | |||||||
|  |  | ||||||
|         useDynamicTheme = false |         useDynamicTheme = false | ||||||
|         super.onCreate(savedInstanceState) |         super.onCreate(savedInstanceState) | ||||||
|         appLaunched() |         appLaunched(BuildConfig.APPLICATION_ID) | ||||||
|         requestWindowFeature(Window.FEATURE_NO_TITLE) |         requestWindowFeature(Window.FEATURE_NO_TITLE) | ||||||
|         if (config.alwaysOpenBackCamera) |         if (config.alwaysOpenBackCamera) | ||||||
|             config.lastUsedCamera = Camera.CameraInfo.CAMERA_FACING_BACK |             config.lastUsedCamera = Camera.CameraInfo.CAMERA_FACING_BACK | ||||||
|   | |||||||
| @@ -9,6 +9,7 @@ import com.simplemobiletools.camera.extensions.config | |||||||
| import com.simplemobiletools.commons.dialogs.FilePickerDialog | import com.simplemobiletools.commons.dialogs.FilePickerDialog | ||||||
| import com.simplemobiletools.commons.dialogs.RadioGroupDialog | import com.simplemobiletools.commons.dialogs.RadioGroupDialog | ||||||
| import com.simplemobiletools.commons.extensions.beVisibleIf | import com.simplemobiletools.commons.extensions.beVisibleIf | ||||||
|  | import com.simplemobiletools.commons.extensions.getAdjustedPrimaryColor | ||||||
| import com.simplemobiletools.commons.extensions.humanizePath | import com.simplemobiletools.commons.extensions.humanizePath | ||||||
| import com.simplemobiletools.commons.extensions.updateTextColors | import com.simplemobiletools.commons.extensions.updateTextColors | ||||||
| import com.simplemobiletools.commons.helpers.LICENSE_GLIDE | import com.simplemobiletools.commons.helpers.LICENSE_GLIDE | ||||||
| @@ -42,6 +43,7 @@ class SettingsActivity : SimpleActivity() { | |||||||
|         setupSavePhotosFolder() |         setupSavePhotosFolder() | ||||||
|         setupPhotoQuality() |         setupPhotoQuality() | ||||||
|         updateTextColors(settings_holder) |         updateTextColors(settings_holder) | ||||||
|  |         setupSectionColors() | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     override fun onCreateOptionsMenu(menu: Menu): Boolean { |     override fun onCreateOptionsMenu(menu: Menu): Boolean { | ||||||
| @@ -57,6 +59,13 @@ class SettingsActivity : SimpleActivity() { | |||||||
|         return true |         return true | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     private fun setupSectionColors() { | ||||||
|  |         val adjustedPrimaryColor = getAdjustedPrimaryColor() | ||||||
|  |         arrayListOf(shutter_label, startup_label, saving_label).forEach { | ||||||
|  |             it.setTextColor(adjustedPrimaryColor) | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|     private fun setupCustomizeColors() { |     private fun setupCustomizeColors() { | ||||||
|         settings_customize_colors_holder.setOnClickListener { |         settings_customize_colors_holder.setOnClickListener { | ||||||
|             startCustomizationActivity() |             startCustomizationActivity() | ||||||
|   | |||||||
| @@ -1,5 +1,30 @@ | |||||||
| package com.simplemobiletools.camera.activities | package com.simplemobiletools.camera.activities | ||||||
|  |  | ||||||
|  | import com.simplemobiletools.camera.R | ||||||
| import com.simplemobiletools.commons.activities.BaseSimpleActivity | import com.simplemobiletools.commons.activities.BaseSimpleActivity | ||||||
|  |  | ||||||
| open class SimpleActivity : BaseSimpleActivity() | open class SimpleActivity : BaseSimpleActivity() { | ||||||
|  |     override fun getAppIconIDs() = arrayListOf( | ||||||
|  |             R.mipmap.ic_launcher_red, | ||||||
|  |             R.mipmap.ic_launcher_pink, | ||||||
|  |             R.mipmap.ic_launcher_purple, | ||||||
|  |             R.mipmap.ic_launcher_deep_purple, | ||||||
|  |             R.mipmap.ic_launcher_indigo, | ||||||
|  |             R.mipmap.ic_launcher_blue, | ||||||
|  |             R.mipmap.ic_launcher_light_blue, | ||||||
|  |             R.mipmap.ic_launcher_cyan, | ||||||
|  |             R.mipmap.ic_launcher_teal, | ||||||
|  |             R.mipmap.ic_launcher_green, | ||||||
|  |             R.mipmap.ic_launcher_light_green, | ||||||
|  |             R.mipmap.ic_launcher_lime, | ||||||
|  |             R.mipmap.ic_launcher_yellow, | ||||||
|  |             R.mipmap.ic_launcher_amber, | ||||||
|  |             R.mipmap.ic_launcher, | ||||||
|  |             R.mipmap.ic_launcher_deep_orange, | ||||||
|  |             R.mipmap.ic_launcher_brown, | ||||||
|  |             R.mipmap.ic_launcher_blue_grey, | ||||||
|  |             R.mipmap.ic_launcher_grey_black | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |     override fun getAppLauncherName() = getString(R.string.app_launcher_name) | ||||||
|  | } | ||||||
|   | |||||||
| @@ -165,10 +165,12 @@ class Preview : ViewGroup, SurfaceHolder.Callback, MediaScannerConnection.OnScan | |||||||
|         } |         } | ||||||
|  |  | ||||||
|         val focusModes = mParameters!!.supportedFocusModes |         val focusModes = mParameters!!.supportedFocusModes | ||||||
|         if (focusModes.contains(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE)) |         if (focusModes.contains(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE)) { | ||||||
|             mParameters!!.focusMode = Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE |             mParameters!!.focusMode = Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE | ||||||
|  |         } | ||||||
|  |  | ||||||
|         mCamera!!.setDisplayOrientation(mActivity!!.getPreviewRotation(mCurrCameraId)) |         mCamera!!.setDisplayOrientation(mActivity!!.getPreviewRotation(mCurrCameraId)) | ||||||
|  |         mParameters!!.zoom = 0 | ||||||
|         updateCameraParameters() |         updateCameraParameters() | ||||||
|  |  | ||||||
|         if (mCanTakePicture) { |         if (mCanTakePicture) { | ||||||
|   | |||||||
| @@ -80,7 +80,7 @@ | |||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_show_preview_holder" |             android:id="@+id/settings_keep_settings_visible_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |             android:layout_marginTop="@dimen/medium_margin" | ||||||
| @@ -91,39 +91,17 @@ | |||||||
|             android:paddingTop="@dimen/activity_margin"> |             android:paddingTop="@dimen/activity_margin"> | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |             <com.simplemobiletools.commons.views.MySwitchCompat | ||||||
|                 android:id="@+id/settings_show_preview" |                 android:id="@+id/settings_keep_settings_visible" | ||||||
|                 android:layout_width="match_parent" |                 android:layout_width="match_parent" | ||||||
|                 android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
|                 android:background="@null" |                 android:background="@null" | ||||||
|                 android:clickable="false" |                 android:clickable="false" | ||||||
|                 android:paddingLeft="@dimen/medium_margin" |                 android:paddingLeft="@dimen/medium_margin" | ||||||
|                 android:paddingStart="@dimen/medium_margin" |                 android:paddingStart="@dimen/medium_margin" | ||||||
|                 android:text="@string/show_preview"/> |                 android:text="@string/keep_settings_visible"/> | ||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |  | ||||||
|             android:id="@+id/settings_sound_holder" |  | ||||||
|             android:layout_width="match_parent" |  | ||||||
|             android:layout_height="wrap_content" |  | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |  | ||||||
|             android:background="?attr/selectableItemBackground" |  | ||||||
|             android:paddingBottom="@dimen/activity_margin" |  | ||||||
|             android:paddingLeft="@dimen/normal_margin" |  | ||||||
|             android:paddingRight="@dimen/normal_margin" |  | ||||||
|             android:paddingTop="@dimen/activity_margin"> |  | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |  | ||||||
|                 android:id="@+id/settings_sound" |  | ||||||
|                 android:layout_width="match_parent" |  | ||||||
|                 android:layout_height="wrap_content" |  | ||||||
|                 android:background="@null" |  | ||||||
|                 android:clickable="false" |  | ||||||
|                 android:paddingLeft="@dimen/medium_margin" |  | ||||||
|                 android:paddingStart="@dimen/medium_margin" |  | ||||||
|                 android:text="@string/shutter_sound"/> |  | ||||||
|  |  | ||||||
|         </RelativeLayout> |  | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_focus_before_capture_holder" |             android:id="@+id/settings_focus_before_capture_holder" | ||||||
| @@ -148,6 +126,47 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|  |         <View | ||||||
|  |             android:id="@+id/shutter_divider" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="1px" | ||||||
|  |             android:background="@color/divider_grey" | ||||||
|  |             android:importantForAccessibility="no"/> | ||||||
|  |  | ||||||
|  |         <com.simplemobiletools.commons.views.MyTextView | ||||||
|  |             android:id="@+id/shutter_label" | ||||||
|  |             android:layout_width="wrap_content" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginLeft="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginStart="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginTop="@dimen/activity_margin" | ||||||
|  |             android:text="@string/shutter" | ||||||
|  |             android:textAllCaps="true" | ||||||
|  |             android:textSize="@dimen/smaller_text_size"/> | ||||||
|  |  | ||||||
|  |         <RelativeLayout | ||||||
|  |             android:id="@+id/settings_sound_holder" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginTop="@dimen/medium_margin" | ||||||
|  |             android:background="?attr/selectableItemBackground" | ||||||
|  |             android:paddingBottom="@dimen/activity_margin" | ||||||
|  |             android:paddingLeft="@dimen/normal_margin" | ||||||
|  |             android:paddingRight="@dimen/normal_margin" | ||||||
|  |             android:paddingTop="@dimen/activity_margin"> | ||||||
|  |  | ||||||
|  |             <com.simplemobiletools.commons.views.MySwitchCompat | ||||||
|  |                 android:id="@+id/settings_sound" | ||||||
|  |                 android:layout_width="match_parent" | ||||||
|  |                 android:layout_height="wrap_content" | ||||||
|  |                 android:background="@null" | ||||||
|  |                 android:clickable="false" | ||||||
|  |                 android:paddingLeft="@dimen/medium_margin" | ||||||
|  |                 android:paddingStart="@dimen/medium_margin" | ||||||
|  |                 android:text="@string/shutter_sound"/> | ||||||
|  |  | ||||||
|  |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_volume_buttons_as_shutter_holder" |             android:id="@+id/settings_volume_buttons_as_shutter_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| @@ -171,6 +190,24 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|  |         <View | ||||||
|  |             android:id="@+id/startup_divider" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="1px" | ||||||
|  |             android:background="@color/divider_grey" | ||||||
|  |             android:importantForAccessibility="no"/> | ||||||
|  |  | ||||||
|  |         <com.simplemobiletools.commons.views.MyTextView | ||||||
|  |             android:id="@+id/startup_label" | ||||||
|  |             android:layout_width="wrap_content" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginLeft="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginStart="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginTop="@dimen/activity_margin" | ||||||
|  |             android:text="@string/startup" | ||||||
|  |             android:textAllCaps="true" | ||||||
|  |             android:textSize="@dimen/smaller_text_size"/> | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_turn_flash_off_at_startup_holder" |             android:id="@+id/settings_turn_flash_off_at_startup_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| @@ -194,52 +231,6 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |  | ||||||
|             android:id="@+id/settings_flip_photos_holder" |  | ||||||
|             android:layout_width="match_parent" |  | ||||||
|             android:layout_height="wrap_content" |  | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |  | ||||||
|             android:background="?attr/selectableItemBackground" |  | ||||||
|             android:paddingBottom="@dimen/activity_margin" |  | ||||||
|             android:paddingLeft="@dimen/normal_margin" |  | ||||||
|             android:paddingRight="@dimen/normal_margin" |  | ||||||
|             android:paddingTop="@dimen/activity_margin"> |  | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |  | ||||||
|                 android:id="@+id/settings_flip_photos" |  | ||||||
|                 android:layout_width="match_parent" |  | ||||||
|                 android:layout_height="wrap_content" |  | ||||||
|                 android:background="@null" |  | ||||||
|                 android:clickable="false" |  | ||||||
|                 android:paddingLeft="@dimen/medium_margin" |  | ||||||
|                 android:paddingStart="@dimen/medium_margin" |  | ||||||
|                 android:text="@string/flip_front_camera_photos_horizontally"/> |  | ||||||
|  |  | ||||||
|         </RelativeLayout> |  | ||||||
|  |  | ||||||
|         <RelativeLayout |  | ||||||
|             android:id="@+id/settings_keep_settings_visible_holder" |  | ||||||
|             android:layout_width="match_parent" |  | ||||||
|             android:layout_height="wrap_content" |  | ||||||
|             android:layout_marginTop="@dimen/medium_margin" |  | ||||||
|             android:background="?attr/selectableItemBackground" |  | ||||||
|             android:paddingBottom="@dimen/activity_margin" |  | ||||||
|             android:paddingLeft="@dimen/normal_margin" |  | ||||||
|             android:paddingRight="@dimen/normal_margin" |  | ||||||
|             android:paddingTop="@dimen/activity_margin"> |  | ||||||
|  |  | ||||||
|             <com.simplemobiletools.commons.views.MySwitchCompat |  | ||||||
|                 android:id="@+id/settings_keep_settings_visible" |  | ||||||
|                 android:layout_width="match_parent" |  | ||||||
|                 android:layout_height="wrap_content" |  | ||||||
|                 android:background="@null" |  | ||||||
|                 android:clickable="false" |  | ||||||
|                 android:paddingLeft="@dimen/medium_margin" |  | ||||||
|                 android:paddingStart="@dimen/medium_margin" |  | ||||||
|                 android:text="@string/keep_settings_visible"/> |  | ||||||
|  |  | ||||||
|         </RelativeLayout> |  | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_always_open_back_camera_holder" |             android:id="@+id/settings_always_open_back_camera_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| @@ -263,6 +254,24 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|  |         <View | ||||||
|  |             android:id="@+id/saving_divider" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="1px" | ||||||
|  |             android:background="@color/divider_grey" | ||||||
|  |             android:importantForAccessibility="no"/> | ||||||
|  |  | ||||||
|  |         <com.simplemobiletools.commons.views.MyTextView | ||||||
|  |             android:id="@+id/saving_label" | ||||||
|  |             android:layout_width="wrap_content" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginLeft="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginStart="@dimen/bigger_margin" | ||||||
|  |             android:layout_marginTop="@dimen/activity_margin" | ||||||
|  |             android:text="@string/saving_label" | ||||||
|  |             android:textAllCaps="true" | ||||||
|  |             android:textSize="@dimen/smaller_text_size"/> | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_save_photo_metadata_holder" |             android:id="@+id/settings_save_photo_metadata_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
| @@ -286,6 +295,52 @@ | |||||||
|  |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
|  |  | ||||||
|  |         <RelativeLayout | ||||||
|  |             android:id="@+id/settings_show_preview_holder" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginTop="@dimen/medium_margin" | ||||||
|  |             android:background="?attr/selectableItemBackground" | ||||||
|  |             android:paddingBottom="@dimen/activity_margin" | ||||||
|  |             android:paddingLeft="@dimen/normal_margin" | ||||||
|  |             android:paddingRight="@dimen/normal_margin" | ||||||
|  |             android:paddingTop="@dimen/activity_margin"> | ||||||
|  |  | ||||||
|  |             <com.simplemobiletools.commons.views.MySwitchCompat | ||||||
|  |                 android:id="@+id/settings_show_preview" | ||||||
|  |                 android:layout_width="match_parent" | ||||||
|  |                 android:layout_height="wrap_content" | ||||||
|  |                 android:background="@null" | ||||||
|  |                 android:clickable="false" | ||||||
|  |                 android:paddingLeft="@dimen/medium_margin" | ||||||
|  |                 android:paddingStart="@dimen/medium_margin" | ||||||
|  |                 android:text="@string/show_preview"/> | ||||||
|  |  | ||||||
|  |         </RelativeLayout> | ||||||
|  |  | ||||||
|  |         <RelativeLayout | ||||||
|  |             android:id="@+id/settings_flip_photos_holder" | ||||||
|  |             android:layout_width="match_parent" | ||||||
|  |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginTop="@dimen/medium_margin" | ||||||
|  |             android:background="?attr/selectableItemBackground" | ||||||
|  |             android:paddingBottom="@dimen/activity_margin" | ||||||
|  |             android:paddingLeft="@dimen/normal_margin" | ||||||
|  |             android:paddingRight="@dimen/normal_margin" | ||||||
|  |             android:paddingTop="@dimen/activity_margin"> | ||||||
|  |  | ||||||
|  |             <com.simplemobiletools.commons.views.MySwitchCompat | ||||||
|  |                 android:id="@+id/settings_flip_photos" | ||||||
|  |                 android:layout_width="match_parent" | ||||||
|  |                 android:layout_height="wrap_content" | ||||||
|  |                 android:background="@null" | ||||||
|  |                 android:clickable="false" | ||||||
|  |                 android:paddingLeft="@dimen/medium_margin" | ||||||
|  |                 android:paddingStart="@dimen/medium_margin" | ||||||
|  |                 android:text="@string/flip_front_camera_photos_horizontally"/> | ||||||
|  |  | ||||||
|  |         </RelativeLayout> | ||||||
|  |  | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:id="@+id/settings_save_photos_holder" |             android:id="@+id/settings_save_photos_holder" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|     <background android:drawable="@color/color_primary"/> |     <background android:drawable="@color/md_orange_700"/> | ||||||
|     <foreground android:drawable="@drawable/ic_launcher_foreground"/> |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
| </adaptive-icon> | </adaptive-icon> | ||||||
|   | |||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_amber_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_blue_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_blue_grey_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_brown_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_cyan_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_deep_orange_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_deep_purple_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_green_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_grey_black"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_indigo_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_light_blue_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_light_green_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_lime_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_pink_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_purple_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_red_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_teal_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| @@ -0,0 +1,5 @@ | |||||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||||
|  | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  |     <background android:drawable="@color/md_yellow_700"/> | ||||||
|  |     <foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||||||
|  | </adaptive-icon> | ||||||
| Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 5.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_amber.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 4.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_brown.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 4.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 6.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_lime.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_pink.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_red.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_teal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 4.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 5.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_amber.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_brown.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 2.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_cyan.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 2.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_indigo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_light_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_lime.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_pink.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_red.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 2.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_teal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 2.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_yellow.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 3.2 KiB | 
| Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 7.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 8.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.6 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 9.3 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 4.7 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.9 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_red.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.4 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 8.1 KiB | 
| Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 14 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 12 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 12 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 17 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 12 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 7.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 13 KiB |