- Replace default Android icon with custom notepad design - Use PNG-based adaptive icons (mipmap) instead of vector drawables for better launcher compatibility - Add ic_launcher_background.png (light blue #90CAF9) for all densities - Add ic_launcher_foreground.png (transparent notepad design) for all densities - Update legacy WebP icons (mdpi/hdpi/xhdpi/xxhdpi/xxxhdpi) with new design - Update Fastlane metadata icons (de-DE + en-US) with 512x512 PNG - Improve F-Droid NonFreeNet AntiFeature documentation: * Clarify HTTP restricted to local networks only (RFC 1918 private IPs, localhost, .local domains) * Document upcoming v1.1.2 security restrictions * Emphasize HTTPS support and recommendation Icon Design: - White notepad paper with gray border - Red header line (like real notepads) - Three blue text bars (representing notes) - Orange pencil with white tip in bottom-right corner - Light blue background for adaptive icon Technical Changes: - Delete drawable/ic_launcher_background.xml (vector drawables) - Delete drawable/ic_launcher_foreground.xml (vector drawables) - Update mipmap-anydpi-v26/ic_launcher.xml: @drawable -> @mipmap - Update mipmap-anydpi-v26/ic_launcher_round.xml: @drawable -> @mipmap - Remove monochrome tag (not needed for this design) Addresses IzzyOnDroid Issue #2 feedback
Simple Notes - Android App
🚧 Development Setup
Voraussetzungen
- Android Studio Hedgehog (2023.1.1) oder neuer
- JDK 17
- Android SDK 34
- Min SDK 24
Projekt in Android Studio öffnen
# In Android Studio:
# File → New → New Project
# Template: Empty Views Activity
#
# Settings:
# Name: Simple Notes
# Package: com.example.simplenotes
# Save location: /home/liq/gitProjects/simple-notes-sync/android/
# Language: Kotlin
# Minimum SDK: API 24
# Build configuration: Kotlin DSL
Dependencies
Siehe ANDROID_GUIDE.md in project-docs für vollständige build.gradle.kts:
Hauptabhängigkeiten:
- Sardine Android (WebDAV Client)
- Kotlin Coroutines
- Gson (JSON)
- WorkManager (Background Sync)
- Material Design Components
Projektstruktur
android/
└── app/
└── src/
└── main/
├── AndroidManifest.xml
├── java/com/example/simplenotes/
│ ├── MainActivity.kt
│ ├── NoteEditorActivity.kt
│ ├── SettingsActivity.kt
│ ├── models/
│ │ ├── Note.kt
│ │ └── SyncStatus.kt
│ ├── storage/
│ │ └── NotesStorage.kt
│ ├── sync/
│ │ ├── WebDavSyncService.kt
│ │ ├── WifiSyncReceiver.kt
│ │ ├── SyncWorker.kt
│ │ └── ConflictResolver.kt
│ ├── adapters/
│ │ └── NotesAdapter.kt
│ └── utils/
│ ├── DeviceIdGenerator.kt
│ ├── NotificationHelper.kt
│ ├── Extensions.kt
│ └── Constants.kt
└── res/
├── layout/
├── values/
└── drawable/
📖 Development Guide
Vollständige Code-Beispiele und Implementation:
🏗️ Build
# Debug Build
./gradlew assembleDebug
# Release Build
./gradlew assembleRelease
# Install on connected device
./gradlew installDebug
🧪 Testing
# Run unit tests
./gradlew test
# Run instrumented tests
./gradlew connectedAndroidTest
📝 TODO
- Projekt in Android Studio erstellen
- Dependencies einrichten
- Models implementieren (Note.kt, SyncStatus.kt)
- Storage Layer (NotesStorage.kt)
- UI Layouts erstellen
- Activities implementieren
- Sync Service (WebDavSyncService.kt)
- WLAN Detection (WifiSyncReceiver.kt)
- WorkManager Setup (SyncWorker.kt)
- Notifications (NotificationHelper.kt)
- Error Handling
- Testing
Next Step: Projekt in Android Studio erstellen und Code aus ANDROID_GUIDE.md übernehmen.