This commit is contained in:
2025-11-26 12:43:33 +01:00
commit ab66f82d96
112 changed files with 11835 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<group android:scaleX="0.5"
android:scaleY="0.5"
android:translateX="27"
android:translateY="27">
<path
android:fillColor="#FFFFFF"
android:pathData="M54,27C40.2,27 29,38.2 29,52s11.2,25 25,25 25,-11.2 25,-25S67.8,27 54,27zM54,72c-11,0 -20,-9 -20,-20s9,-20 20,-20 20,9 20,20S65,72 54,72z"/>
<path
android:fillColor="#FFFFFF"
android:pathData="M54,37c-8.3,0 -15,6.7 -15,15s6.7,15 15,15 15,-6.7 15,-15S62.3,37 54,37z"/>
</group>
</vector>

View 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/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

View 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/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,2 @@
# Placeholder for launcher icon
# In a real project, this would be a PNG image file

View File

@@ -0,0 +1,2 @@
# Placeholder for launcher icon foreground
# In a real project, this would be a PNG image file

View File

@@ -0,0 +1,2 @@
# Placeholder for launcher icon
# In a real project, this would be a PNG image file

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#6650a4</color>
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Panorama Stitcher</string>
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.PanoramaStitcher" parent="android:Theme.Material.Light.NoActionBar" />
</resources>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<!-- External storage paths for panorama exports -->
<external-path name="external_files" path="." />
<!-- Pictures directory for panorama storage -->
<external-path name="external_pictures" path="Pictures/" />
<!-- Cache directory for temporary files -->
<cache-path name="cache" path="." />
<!-- Internal storage for app-specific files -->
<files-path name="internal_files" path="." />
</paths>