commit 327c5c28fee236270160f9f2f2eb94419da80a89 Author: Moritz Date: Sat Feb 14 17:47:10 2026 +0100 Initial commit: Helios Alarm Clock Android alarm clock with embedded Ktor HTTP server for remote control. Features in-app and HTTP API alarm management, full-screen alarm activity with sound/vibration, DND bypass, boot persistence, and dark Material 3 UI. Co-Authored-By: Claude Opus 4.6 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc8a97c --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea +.DS_Store +/build +/app/build +/captures +.externalNativeBuild +.cxx +local.properties +/app/schemas +*.apk +*.hprof +.claude/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..26c697a --- /dev/null +++ b/README.md @@ -0,0 +1,69 @@ +# Helios Alarm Clock + +An Android alarm clock app with a built-in HTTP server, designed to be controlled remotely from a Raspberry Pi or any device on the local network. + +## Features + +- **HTTP API** — Embedded Ktor server (port 8080) for remote alarm management +- **In-app UI** — Set and remove alarms with a Material 3 time picker +- **Reliable alarms** — Uses `AlarmManager.setExactAndAllowWhileIdle()` to fire through Doze mode +- **Full-screen alarm** — Wakes the screen, plays the system alarm sound, and vibrates +- **DND bypass** — Alarm audio uses `USAGE_ALARM` to ring even in Do Not Disturb mode +- **Persistent server** — Foreground service with wake lock keeps the HTTP server alive +- **Boot survival** — Server and alarms reschedule automatically after reboot +- **Auto-cleanup** — Fired alarms are automatically deleted from the database + +## HTTP API + +All endpoints are served on port `8080`. + +### Set an alarm + +``` +POST /set +Content-Type: application/json + +{"hour": 7, "minute": 30, "label": "Wake up"} +``` + +Returns `201 Created` with `{"id": ""}`. + +### Remove an alarm + +``` +POST /rm +Content-Type: application/json + +{"id": ""} +``` + +### List alarms + +``` +GET /list +``` + +Returns a JSON array of all scheduled alarms. + +## Tech Stack + +- Kotlin, Jetpack Compose, Material 3 +- MVVM architecture with Hilt dependency injection +- Room database for alarm persistence +- Ktor CIO embedded HTTP server +- AlarmManager with exact alarms +- Foreground service (connectedDevice type) for the HTTP server + +## Requirements + +- Android 8.0+ (API 26) +- Target SDK 36 (Android 16) +- Permissions: exact alarms, notifications, foreground service, wake lock, internet + +## Building + +```bash +./gradlew assembleRelease +``` + +The APK will be at `app/build/outputs/apk/release/app-release.apk`. diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..98c3830 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,103 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.kotlin.serialization) + alias(libs.plugins.compose.compiler) + alias(libs.plugins.ksp) + alias(libs.plugins.hilt) +} + +android { + namespace = "com.example.helios_alarm_clock" + compileSdk { + version = release(36) { + minorApiLevel = 1 + } + } + + defaultConfig { + applicationId = "com.example.helios_alarm_clock" + minSdk = 26 + targetSdk = 36 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + signingConfigs { + create("release") { + storeFile = file(System.getProperty("user.home") + "/.android/debug.keystore") + storePassword = "android" + keyAlias = "androiddebugkey" + keyPassword = "android" + } + } + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + signingConfig = signingConfigs.getByName("release") + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlin { + jvmToolchain(17) + } + buildFeatures { + compose = true + } +} + +ksp { + arg("room.schemaLocation", "$projectDir/schemas") +} + +dependencies { + // Core + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.activity.compose) + + // Compose + implementation(platform(libs.compose.bom)) + implementation(libs.compose.ui) + implementation(libs.compose.ui.graphics) + implementation(libs.compose.ui.tooling.preview) + implementation(libs.compose.material3) + implementation(libs.compose.material.icons) + debugImplementation(libs.compose.ui.tooling) + + // Lifecycle + implementation(libs.lifecycle.runtime.ktx) + implementation(libs.lifecycle.runtime.compose) + implementation(libs.lifecycle.viewmodel.compose) + + // Hilt + implementation(libs.hilt.android) + ksp(libs.hilt.android.compiler) + implementation(libs.hilt.navigation.compose) + + // Room + implementation(libs.room.runtime) + implementation(libs.room.ktx) + ksp(libs.room.compiler) + + // Ktor Server + implementation(libs.ktor.server.core) + implementation(libs.ktor.server.cio) + implementation(libs.ktor.server.content.negotiation) + implementation(libs.ktor.serialization.kotlinx.json) + + // Serialization + implementation(libs.kotlinx.serialization.json) + + // Test + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/helios_alarm_clock/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/example/helios_alarm_clock/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..ecb8109 --- /dev/null +++ b/app/src/androidTest/java/com/example/helios_alarm_clock/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.helios_alarm_clock + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.example.helios_alarm_clock", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..63ad3df --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/java/com/example/helios_alarm_clock/HeliosApp.kt b/app/src/main/java/com/example/helios_alarm_clock/HeliosApp.kt new file mode 100644 index 0000000..2b459f0 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/HeliosApp.kt @@ -0,0 +1,44 @@ +package com.example.helios_alarm_clock + +import android.app.Application +import android.app.NotificationChannel +import android.app.NotificationManager +import dagger.hilt.android.HiltAndroidApp + +@HiltAndroidApp +class HeliosApp : Application() { + + override fun onCreate() { + super.onCreate() + createNotificationChannels() + } + + private fun createNotificationChannels() { + val manager = getSystemService(NotificationManager::class.java) + + val serviceChannel = NotificationChannel( + CHANNEL_SERVICE, + "Server Service", + NotificationManager.IMPORTANCE_LOW + ).apply { + description = "Keeps the HTTP server running in the background" + } + + val alarmChannel = NotificationChannel( + CHANNEL_ALARM, + "Alarm", + NotificationManager.IMPORTANCE_HIGH + ).apply { + description = "Alarm notifications" + setBypassDnd(true) + lockscreenVisibility = android.app.Notification.VISIBILITY_PUBLIC + } + + manager.createNotificationChannels(listOf(serviceChannel, alarmChannel)) + } + + companion object { + const val CHANNEL_SERVICE = "ktor_service_channel" + const val CHANNEL_ALARM = "alarm_channel" + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDao.kt b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDao.kt new file mode 100644 index 0000000..4b692d8 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDao.kt @@ -0,0 +1,26 @@ +package com.example.helios_alarm_clock.data + +import androidx.room.Dao +import androidx.room.Insert +import androidx.room.OnConflictStrategy +import androidx.room.Query +import kotlinx.coroutines.flow.Flow + +@Dao +interface AlarmDao { + + @Query("SELECT * FROM alarms ORDER BY hour, minute") + fun observeAll(): Flow> + + @Query("SELECT * FROM alarms ORDER BY hour, minute") + suspend fun getAll(): List + + @Query("SELECT * FROM alarms WHERE id = :id") + suspend fun getById(id: String): AlarmEntity? + + @Insert(onConflict = OnConflictStrategy.REPLACE) + suspend fun insert(alarm: AlarmEntity) + + @Query("DELETE FROM alarms WHERE id = :id") + suspend fun deleteById(id: String): Int +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDatabase.kt b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDatabase.kt new file mode 100644 index 0000000..85f911c --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmDatabase.kt @@ -0,0 +1,13 @@ +package com.example.helios_alarm_clock.data + +import androidx.room.Database +import androidx.room.RoomDatabase + +@Database(entities = [AlarmEntity::class], version = 1, exportSchema = true) +abstract class AlarmDatabase : RoomDatabase() { + abstract fun alarmDao(): AlarmDao + + companion object { + const val NAME = "helios_alarms.db" + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/data/AlarmEntity.kt b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmEntity.kt new file mode 100644 index 0000000..7adf2eb --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/data/AlarmEntity.kt @@ -0,0 +1,16 @@ +package com.example.helios_alarm_clock.data + +import androidx.room.Entity +import androidx.room.PrimaryKey +import kotlinx.serialization.Serializable + +@Serializable +@Entity(tableName = "alarms") +data class AlarmEntity( + @PrimaryKey + val id: String, + val hour: Int, + val minute: Int, + val label: String, + val triggerTimeMillis: Long +) diff --git a/app/src/main/java/com/example/helios_alarm_clock/di/AppModule.kt b/app/src/main/java/com/example/helios_alarm_clock/di/AppModule.kt new file mode 100644 index 0000000..a21afb6 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/di/AppModule.kt @@ -0,0 +1,30 @@ +package com.example.helios_alarm_clock.di + +import android.content.Context +import androidx.room.Room +import com.example.helios_alarm_clock.data.AlarmDao +import com.example.helios_alarm_clock.data.AlarmDatabase +import dagger.Module +import dagger.Provides +import dagger.hilt.InstallIn +import dagger.hilt.android.qualifiers.ApplicationContext +import dagger.hilt.components.SingletonComponent +import javax.inject.Singleton + +@Module +@InstallIn(SingletonComponent::class) +object AppModule { + + @Provides + @Singleton + fun provideDatabase(@ApplicationContext context: Context): AlarmDatabase = + Room.databaseBuilder( + context, + AlarmDatabase::class.java, + AlarmDatabase.NAME + ).build() + + @Provides + @Singleton + fun provideAlarmDao(db: AlarmDatabase): AlarmDao = db.alarmDao() +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/receiver/AlarmReceiver.kt b/app/src/main/java/com/example/helios_alarm_clock/receiver/AlarmReceiver.kt new file mode 100644 index 0000000..7b866c4 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/receiver/AlarmReceiver.kt @@ -0,0 +1,38 @@ +package com.example.helios_alarm_clock.receiver + +import android.content.BroadcastReceiver +import android.content.Context +import android.content.Intent +import android.os.PowerManager +import com.example.helios_alarm_clock.ui.AlarmActivity + +class AlarmReceiver : BroadcastReceiver() { + + override fun onReceive(context: Context, intent: Intent) { + val alarmId = intent.getStringExtra(EXTRA_ALARM_ID) ?: return + val label = intent.getStringExtra(EXTRA_ALARM_LABEL) ?: "Alarm" + + // Wake lock to keep CPU alive while we launch the activity + val pm = context.getSystemService(Context.POWER_SERVICE) as PowerManager + val wl = pm.newWakeLock( + PowerManager.PARTIAL_WAKE_LOCK, + "helios::alarm_receiver" + ) + wl.acquire(10_000L) + + // Launch AlarmActivity directly — no notification + val activityIntent = Intent(context, AlarmActivity::class.java).apply { + flags = Intent.FLAG_ACTIVITY_NEW_TASK or + Intent.FLAG_ACTIVITY_CLEAR_TOP or + Intent.FLAG_ACTIVITY_NO_USER_ACTION + putExtra(EXTRA_ALARM_ID, alarmId) + putExtra(EXTRA_ALARM_LABEL, label) + } + context.startActivity(activityIntent) + } + + companion object { + const val EXTRA_ALARM_ID = "alarm_id" + const val EXTRA_ALARM_LABEL = "alarm_label" + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/receiver/BootReceiver.kt b/app/src/main/java/com/example/helios_alarm_clock/receiver/BootReceiver.kt new file mode 100644 index 0000000..115cab2 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/receiver/BootReceiver.kt @@ -0,0 +1,15 @@ +package com.example.helios_alarm_clock.receiver + +import android.content.BroadcastReceiver +import android.content.Context +import android.content.Intent +import com.example.helios_alarm_clock.service.KtorService + +class BootReceiver : BroadcastReceiver() { + + override fun onReceive(context: Context, intent: Intent) { + if (intent.action == Intent.ACTION_BOOT_COMPLETED) { + KtorService.start(context) + } + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/service/AlarmRingService.kt b/app/src/main/java/com/example/helios_alarm_clock/service/AlarmRingService.kt new file mode 100644 index 0000000..7a3b190 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/service/AlarmRingService.kt @@ -0,0 +1,178 @@ +package com.example.helios_alarm_clock.service + +import android.app.PendingIntent +import android.app.Service +import android.content.Context +import android.content.Intent +import android.content.pm.ServiceInfo +import android.media.AudioAttributes +import android.media.MediaPlayer +import android.media.RingtoneManager +import android.os.IBinder +import android.os.VibrationEffect +import android.os.Vibrator +import android.util.Log +import androidx.core.app.NotificationCompat +import com.example.helios_alarm_clock.HeliosApp +import com.example.helios_alarm_clock.R +import com.example.helios_alarm_clock.data.AlarmDao +import com.example.helios_alarm_clock.receiver.AlarmReceiver +import com.example.helios_alarm_clock.ui.AlarmActivity +import dagger.hilt.android.AndroidEntryPoint +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.SupervisorJob +import kotlinx.coroutines.cancel +import kotlinx.coroutines.launch +import javax.inject.Inject + +@AndroidEntryPoint +class AlarmRingService : Service() { + + @Inject lateinit var alarmDao: AlarmDao + + private var mediaPlayer: MediaPlayer? = null + private var vibrator: Vibrator? = null + private val scope = CoroutineScope(Dispatchers.IO + SupervisorJob()) + + override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int { + if (intent?.action == ACTION_STOP) { + stopSelf() + return START_NOT_STICKY + } + + val alarmId = intent?.getStringExtra(AlarmReceiver.EXTRA_ALARM_ID) ?: "" + val label = intent?.getStringExtra(AlarmReceiver.EXTRA_ALARM_LABEL) ?: "Alarm" + + try { + startForeground( + NOTIFICATION_ID, + buildNotification(alarmId, label), + ServiceInfo.FOREGROUND_SERVICE_TYPE_SHORT_SERVICE + ) + } catch (e: Exception) { + Log.e(TAG, "startForeground failed", e) + stopSelf() + return START_NOT_STICKY + } + + startSound() + startVibration() + + // Delete the fired alarm from the database + if (alarmId.isNotEmpty()) { + scope.launch { + try { + alarmDao.deleteById(alarmId) + } catch (e: Exception) { + Log.e(TAG, "Failed to delete alarm $alarmId", e) + } + } + } + + return START_NOT_STICKY + } + + override fun onTimeout(foregroundServiceType: Int) { + Log.w(TAG, "Service timeout reached, stopping") + stopSelf() + } + + override fun onDestroy() { + mediaPlayer?.let { + try { + if (it.isPlaying) it.stop() + it.release() + } catch (_: Exception) {} + } + mediaPlayer = null + vibrator?.cancel() + vibrator = null + scope.cancel() + super.onDestroy() + } + + override fun onBind(intent: Intent?): IBinder? = null + + private fun startSound() { + try { + val alarmUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM) + ?: RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION) + ?: return + mediaPlayer = MediaPlayer().apply { + setAudioAttributes( + AudioAttributes.Builder() + .setUsage(AudioAttributes.USAGE_ALARM) + .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION) + .build() + ) + setDataSource(this@AlarmRingService, alarmUri) + isLooping = true + prepare() + start() + } + } catch (e: Exception) { + Log.e(TAG, "Failed to start alarm sound", e) + } + } + + private fun startVibration() { + try { + vibrator = getSystemService(Vibrator::class.java) + val pattern = longArrayOf(0, 800, 400, 800, 400) + vibrator?.vibrate(VibrationEffect.createWaveform(pattern, 0)) + } catch (e: Exception) { + Log.e(TAG, "Failed to start vibration", e) + } + } + + private fun buildNotification(alarmId: String, label: String): android.app.Notification { + val fullScreenIntent = Intent(this, AlarmActivity::class.java).apply { + flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP + putExtra(AlarmReceiver.EXTRA_ALARM_ID, alarmId) + putExtra(AlarmReceiver.EXTRA_ALARM_LABEL, label) + } + val fullScreenPi = PendingIntent.getActivity( + this, alarmId.hashCode(), fullScreenIntent, + PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE + ) + + val stopIntent = Intent(this, AlarmRingService::class.java).apply { + action = ACTION_STOP + } + val stopPi = PendingIntent.getService( + this, 0, stopIntent, + PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE + ) + + return NotificationCompat.Builder(this, HeliosApp.CHANNEL_ALARM) + .setSmallIcon(R.mipmap.ic_launcher) + .setContentTitle("Helios Alarm") + .setContentText(label) + .setPriority(NotificationCompat.PRIORITY_MAX) + .setCategory(NotificationCompat.CATEGORY_ALARM) + .setFullScreenIntent(fullScreenPi, true) + .setContentIntent(fullScreenPi) + .addAction(0, "Dismiss", stopPi) + .setOngoing(true) + .build() + } + + companion object { + private const val TAG = "AlarmRingService" + const val NOTIFICATION_ID = 2 + private const val ACTION_STOP = "com.example.helios_alarm_clock.STOP_ALARM" + + fun start(context: Context, alarmId: String, label: String) { + val intent = Intent(context, AlarmRingService::class.java).apply { + putExtra(AlarmReceiver.EXTRA_ALARM_ID, alarmId) + putExtra(AlarmReceiver.EXTRA_ALARM_LABEL, label) + } + context.startForegroundService(intent) + } + + fun stop(context: Context) { + context.stopService(Intent(context, AlarmRingService::class.java)) + } + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/service/KtorService.kt b/app/src/main/java/com/example/helios_alarm_clock/service/KtorService.kt new file mode 100644 index 0000000..31ffc2b --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/service/KtorService.kt @@ -0,0 +1,220 @@ +package com.example.helios_alarm_clock.service + +import android.app.Notification +import android.app.PendingIntent +import android.app.Service +import android.content.Context +import android.content.Intent +import android.os.IBinder +import android.os.PowerManager +import androidx.core.app.NotificationCompat +import com.example.helios_alarm_clock.HeliosApp +import com.example.helios_alarm_clock.R +import com.example.helios_alarm_clock.data.AlarmDao +import com.example.helios_alarm_clock.data.AlarmEntity +import com.example.helios_alarm_clock.ui.MainActivity +import com.example.helios_alarm_clock.util.AlarmScheduler +import com.example.helios_alarm_clock.util.getLocalIpAddress +import dagger.hilt.android.AndroidEntryPoint +import io.ktor.http.HttpStatusCode +import io.ktor.serialization.kotlinx.json.json +import io.ktor.server.application.install +import io.ktor.server.cio.CIO +import io.ktor.server.cio.CIOApplicationEngine +import io.ktor.server.engine.EmbeddedServer +import io.ktor.server.engine.embeddedServer +import io.ktor.server.plugins.contentnegotiation.ContentNegotiation +import io.ktor.server.request.receive +import io.ktor.server.response.respond +import io.ktor.server.routing.get +import io.ktor.server.routing.post +import io.ktor.server.routing.routing +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.SupervisorJob +import kotlinx.coroutines.cancel +import kotlinx.coroutines.launch +import kotlinx.serialization.Serializable +import kotlinx.serialization.json.Json +import java.util.Calendar +import java.util.UUID +import javax.inject.Inject + +@AndroidEntryPoint +class KtorService : Service() { + + @Inject lateinit var alarmDao: AlarmDao + @Inject lateinit var alarmScheduler: AlarmScheduler + + private var server: EmbeddedServer? = null + private val serviceScope = CoroutineScope(Dispatchers.IO + SupervisorJob()) + private var wakeLock: PowerManager.WakeLock? = null + + override fun onCreate() { + super.onCreate() + acquireWakeLock() + startForeground(NOTIFICATION_ID, buildNotification()) + startServer() + rescheduleAlarms() + } + + override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int { + return START_STICKY + } + + override fun onBind(intent: Intent?): IBinder? = null + + override fun onDestroy() { + server?.stop(1000, 2000) + serviceScope.cancel() + releaseWakeLock() + super.onDestroy() + } + + private fun acquireWakeLock() { + val pm = getSystemService(Context.POWER_SERVICE) as PowerManager + wakeLock = pm.newWakeLock( + PowerManager.PARTIAL_WAKE_LOCK, + "helios::ktor_service" + ).apply { acquire() } + } + + private fun releaseWakeLock() { + wakeLock?.let { if (it.isHeld) it.release() } + wakeLock = null + } + + private fun rescheduleAlarms() { + serviceScope.launch { + val now = System.currentTimeMillis() + for (alarm in alarmDao.getAll()) { + if (alarm.triggerTimeMillis > now) { + alarmScheduler.schedule(alarm) + } else { + alarmDao.deleteById(alarm.id) + } + } + } + } + + private fun startServer() { + server = embeddedServer(CIO, port = PORT) { + install(ContentNegotiation) { + json(Json { + prettyPrint = true + isLenient = true + ignoreUnknownKeys = true + }) + } + + routing { + post("/set") { + try { + val req = call.receive() + val id = UUID.randomUUID().toString() + + val now = Calendar.getInstance() + val trigger = Calendar.getInstance().apply { + set(Calendar.HOUR_OF_DAY, req.hour) + set(Calendar.MINUTE, req.minute) + set(Calendar.SECOND, 0) + set(Calendar.MILLISECOND, 0) + if (before(now)) add(Calendar.DAY_OF_YEAR, 1) + } + + val entity = AlarmEntity( + id = id, + hour = req.hour, + minute = req.minute, + label = req.label, + triggerTimeMillis = trigger.timeInMillis + ) + + alarmDao.insert(entity) + alarmScheduler.schedule(entity) + + call.respond(HttpStatusCode.Created, SetAlarmResponse(id)) + } catch (e: Exception) { + call.respond( + HttpStatusCode.BadRequest, + ErrorResponse(e.message ?: "Invalid request") + ) + } + } + + post("/rm") { + try { + val req = call.receive() + val alarm = alarmDao.getById(req.id) + if (alarm != null) { + alarmScheduler.cancel(alarm) + alarmDao.deleteById(req.id) + call.respond(HttpStatusCode.OK, StatusResponse("removed")) + } else { + call.respond( + HttpStatusCode.NotFound, + ErrorResponse("Alarm not found") + ) + } + } catch (e: Exception) { + call.respond( + HttpStatusCode.BadRequest, + ErrorResponse(e.message ?: "Invalid request") + ) + } + } + + get("/list") { + val alarms = alarmDao.getAll() + call.respond(alarms) + } + } + }.also { it.start(wait = false) } + } + + private fun buildNotification(): Notification { + val ip = getLocalIpAddress() ?: "No network" + val contentIntent = PendingIntent.getActivity( + this, + 0, + Intent(this, MainActivity::class.java), + PendingIntent.FLAG_IMMUTABLE + ) + return NotificationCompat.Builder(this, HeliosApp.CHANNEL_SERVICE) + .setContentTitle("Helios Server Running") + .setContentText("Listening on $ip:$PORT") + .setSmallIcon(R.mipmap.ic_launcher) + .setOngoing(true) + .setContentIntent(contentIntent) + .build() + } + + companion object { + const val PORT = 8080 + const val NOTIFICATION_ID = 1 + + fun start(context: Context) { + val intent = Intent(context, KtorService::class.java) + context.startForegroundService(intent) + } + + fun stop(context: Context) { + context.stopService(Intent(context, KtorService::class.java)) + } + } +} + +@Serializable +data class SetAlarmRequest(val hour: Int, val minute: Int, val label: String = "") + +@Serializable +data class RemoveAlarmRequest(val id: String) + +@Serializable +data class SetAlarmResponse(val id: String) + +@Serializable +data class StatusResponse(val status: String) + +@Serializable +data class ErrorResponse(val error: String) diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/AlarmActivity.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/AlarmActivity.kt new file mode 100644 index 0000000..374e231 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/AlarmActivity.kt @@ -0,0 +1,193 @@ +package com.example.helios_alarm_clock.ui + +import android.media.AudioAttributes +import android.media.MediaPlayer +import android.media.RingtoneManager +import android.os.Bundle +import android.os.VibrationEffect +import android.os.Vibrator +import android.util.Log +import android.view.WindowManager +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Button +import androidx.compose.material3.ButtonDefaults +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Surface +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp +import com.example.helios_alarm_clock.data.AlarmDao +import com.example.helios_alarm_clock.ui.theme.HeliosTheme +import dagger.hilt.android.AndroidEntryPoint +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.SupervisorJob +import kotlinx.coroutines.cancel +import kotlinx.coroutines.launch +import java.util.Calendar +import javax.inject.Inject + +@AndroidEntryPoint +class AlarmActivity : ComponentActivity() { + + @Inject lateinit var alarmDao: AlarmDao + + private var mediaPlayer: MediaPlayer? = null + private var vibrator: Vibrator? = null + private val scope = CoroutineScope(Dispatchers.IO + SupervisorJob()) + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + + window.addFlags( + WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON or + WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON + ) + + val alarmId = intent.getStringExtra(EXTRA_ALARM_ID) ?: "" + val label = intent.getStringExtra(EXTRA_ALARM_LABEL) ?: "Alarm" + + startSound() + startVibration() + + // Delete the fired alarm from the database + if (alarmId.isNotEmpty()) { + scope.launch { + try { + alarmDao.deleteById(alarmId) + } catch (e: Exception) { + Log.e(TAG, "Failed to delete alarm $alarmId", e) + } + } + } + + setContent { + HeliosTheme { + AlarmScreen(label = label) { + stopAlarm() + finish() + } + } + } + } + + override fun onDestroy() { + stopAlarm() + scope.cancel() + super.onDestroy() + } + + private fun stopAlarm() { + mediaPlayer?.let { + try { + if (it.isPlaying) it.stop() + it.release() + } catch (_: Exception) {} + } + mediaPlayer = null + vibrator?.cancel() + vibrator = null + } + + private fun startSound() { + try { + val alarmUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM) + ?: RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION) + ?: return + mediaPlayer = MediaPlayer().apply { + setAudioAttributes( + AudioAttributes.Builder() + .setUsage(AudioAttributes.USAGE_ALARM) + .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION) + .build() + ) + setDataSource(this@AlarmActivity, alarmUri) + isLooping = true + prepare() + start() + } + } catch (e: Exception) { + Log.e(TAG, "Failed to start alarm sound", e) + } + } + + private fun startVibration() { + try { + vibrator = getSystemService(Vibrator::class.java) + val pattern = longArrayOf(0, 800, 400, 800, 400) + vibrator?.vibrate(VibrationEffect.createWaveform(pattern, 0)) + } catch (e: Exception) { + Log.e(TAG, "Failed to start vibration", e) + } + } + + companion object { + private const val TAG = "AlarmActivity" + const val EXTRA_ALARM_ID = "alarm_id" + const val EXTRA_ALARM_LABEL = "alarm_label" + } +} + +@Composable +fun AlarmScreen(label: String, onDismiss: () -> Unit) { + val currentTime = remember { + val cal = Calendar.getInstance() + String.format("%02d:%02d", cal.get(Calendar.HOUR_OF_DAY), cal.get(Calendar.MINUTE)) + } + + Surface( + modifier = Modifier.fillMaxSize(), + color = MaterialTheme.colorScheme.background + ) { + Column( + modifier = Modifier + .fillMaxSize() + .padding(32.dp), + horizontalAlignment = Alignment.CenterHorizontally, + verticalArrangement = Arrangement.Center + ) { + Text( + text = currentTime, + fontSize = 72.sp, + fontWeight = FontWeight.Light, + color = MaterialTheme.colorScheme.primary + ) + Spacer(modifier = Modifier.height(16.dp)) + Text( + text = label, + style = MaterialTheme.typography.headlineMedium, + color = MaterialTheme.colorScheme.onBackground + ) + Spacer(modifier = Modifier.height(64.dp)) + Button( + onClick = onDismiss, + modifier = Modifier + .fillMaxWidth() + .height(64.dp), + colors = ButtonDefaults.buttonColors( + containerColor = MaterialTheme.colorScheme.error + ), + shape = MaterialTheme.shapes.large + ) { + Text( + text = "Stop Alarm", + fontSize = 20.sp, + fontWeight = FontWeight.Bold + ) + } + } + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/MainActivity.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/MainActivity.kt new file mode 100644 index 0000000..91bd313 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/MainActivity.kt @@ -0,0 +1,384 @@ +package com.example.helios_alarm_clock.ui + +import android.Manifest +import android.app.AlarmManager +import android.content.Intent +import android.content.pm.PackageManager +import android.net.Uri +import android.os.Build +import android.os.Bundle +import android.os.PowerManager +import android.provider.Settings +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.result.contract.ActivityResultContracts +import androidx.compose.animation.animateColorAsState +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.Add +import androidx.compose.material.icons.filled.Delete +import androidx.compose.material3.Card +import androidx.compose.material3.CardDefaults +import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.FilledTonalButton +import androidx.compose.material3.FloatingActionButton +import androidx.compose.material3.Icon +import androidx.compose.material3.IconButton +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.OutlinedTextField +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Surface +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.material3.TimePicker +import androidx.compose.material3.TopAppBar +import androidx.compose.material3.TopAppBarDefaults +import androidx.compose.material3.rememberTimePickerState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import androidx.compose.ui.window.Dialog +import androidx.compose.ui.window.DialogProperties +import androidx.core.content.ContextCompat +import java.util.Calendar +import androidx.hilt.navigation.compose.hiltViewModel +import androidx.lifecycle.compose.collectAsStateWithLifecycle +import com.example.helios_alarm_clock.data.AlarmEntity +import com.example.helios_alarm_clock.ui.theme.HeliosTheme +import dagger.hilt.android.AndroidEntryPoint + +@AndroidEntryPoint +class MainActivity : ComponentActivity() { + + private val notificationPermissionLauncher = registerForActivityResult( + ActivityResultContracts.RequestPermission() + ) { /* handled silently */ } + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + requestPermissions() + + setContent { + HeliosTheme { + MainScreen() + } + } + } + + private fun requestPermissions() { + // Notification permission (Android 13+) + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { + if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) + != PackageManager.PERMISSION_GRANTED + ) { + notificationPermissionLauncher.launch(Manifest.permission.POST_NOTIFICATIONS) + } + } + + // Exact alarm permission (Android 12+) + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { + val alarmManager = getSystemService(AlarmManager::class.java) + if (!alarmManager.canScheduleExactAlarms()) { + startActivity(Intent(Settings.ACTION_REQUEST_SCHEDULE_EXACT_ALARM)) + } + } + + // Battery optimization exemption + val pm = getSystemService(PowerManager::class.java) + if (!pm.isIgnoringBatteryOptimizations(packageName)) { + val intent = Intent(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS).apply { + data = Uri.parse("package:$packageName") + } + startActivity(intent) + } + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun MainScreen(viewModel: MainViewModel = hiltViewModel()) { + val alarms by viewModel.alarms.collectAsStateWithLifecycle() + val serverRunning by viewModel.serverRunning.collectAsStateWithLifecycle() + var showAddDialog by remember { mutableStateOf(false) } + + if (showAddDialog) { + AddAlarmDialog( + onDismiss = { showAddDialog = false }, + onConfirm = { hour, minute, label -> + viewModel.createAlarm(hour, minute, label) + showAddDialog = false + } + ) + } + + Scaffold( + topBar = { + TopAppBar( + title = { Text("Helios Alarm") }, + colors = TopAppBarDefaults.topAppBarColors( + containerColor = MaterialTheme.colorScheme.surface + ) + ) + }, + floatingActionButton = { + FloatingActionButton( + onClick = { showAddDialog = true }, + containerColor = MaterialTheme.colorScheme.primary, + contentColor = MaterialTheme.colorScheme.onPrimary + ) { + Icon(Icons.Default.Add, contentDescription = "Add alarm") + } + } + ) { padding -> + Column( + modifier = Modifier + .fillMaxSize() + .padding(padding) + .padding(16.dp) + ) { + ServerStatusCard( + ipAddress = viewModel.ipAddress, + port = viewModel.port, + isRunning = serverRunning, + onToggle = { + if (serverRunning) viewModel.stopServer() else viewModel.startServer() + } + ) + + Spacer(modifier = Modifier.height(24.dp)) + + Text( + text = "Active Alarms", + style = MaterialTheme.typography.titleMedium, + fontWeight = FontWeight.SemiBold, + modifier = Modifier.padding(bottom = 8.dp) + ) + + if (alarms.isEmpty()) { + Box( + modifier = Modifier + .fillMaxWidth() + .weight(1f), + contentAlignment = Alignment.Center + ) { + Text( + text = "No alarms set", + style = MaterialTheme.typography.bodyLarge, + color = MaterialTheme.colorScheme.onSurfaceVariant + ) + } + } else { + LazyColumn( + modifier = Modifier.weight(1f), + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + items(alarms, key = { it.id }) { alarm -> + AlarmCard( + alarm = alarm, + onDelete = { viewModel.deleteAlarm(alarm) }, + modifier = Modifier.animateItem() + ) + } + } + } + } + } +} + +@Composable +fun ServerStatusCard( + ipAddress: String, + port: Int, + isRunning: Boolean, + onToggle: () -> Unit +) { + val statusColor by animateColorAsState( + targetValue = if (isRunning) + MaterialTheme.colorScheme.primary + else + MaterialTheme.colorScheme.onSurfaceVariant, + label = "statusColor" + ) + + Card( + modifier = Modifier.fillMaxWidth(), + colors = CardDefaults.cardColors( + containerColor = MaterialTheme.colorScheme.surfaceVariant + ) + ) { + Column(modifier = Modifier.padding(16.dp)) { + Row( + modifier = Modifier.fillMaxWidth(), + horizontalArrangement = Arrangement.SpaceBetween, + verticalAlignment = Alignment.CenterVertically + ) { + Column { + Text( + text = "HTTP Server", + style = MaterialTheme.typography.titleMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(4.dp)) + Text( + text = if (isRunning) "$ipAddress:$port" else "Stopped", + style = MaterialTheme.typography.bodyLarge, + color = statusColor + ) + } + FilledTonalButton(onClick = onToggle) { + Text(if (isRunning) "Stop" else "Start") + } + } + + if (isRunning) { + Spacer(modifier = Modifier.height(8.dp)) + Surface( + shape = MaterialTheme.shapes.small, + color = MaterialTheme.colorScheme.primaryContainer + ) { + Text( + text = "Listening for connections", + modifier = Modifier.padding(horizontal = 8.dp, vertical = 4.dp), + style = MaterialTheme.typography.labelSmall, + color = MaterialTheme.colorScheme.onPrimaryContainer + ) + } + } + } + } +} + +@Composable +fun AlarmCard( + alarm: AlarmEntity, + onDelete: () -> Unit, + modifier: Modifier = Modifier +) { + Card( + modifier = modifier.fillMaxWidth(), + colors = CardDefaults.cardColors( + containerColor = MaterialTheme.colorScheme.surfaceVariant + ) + ) { + Row( + modifier = Modifier + .fillMaxWidth() + .padding(16.dp), + horizontalArrangement = Arrangement.SpaceBetween, + verticalAlignment = Alignment.CenterVertically + ) { + Column { + Text( + text = String.format("%02d:%02d", alarm.hour, alarm.minute), + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Light, + color = MaterialTheme.colorScheme.onSurface + ) + if (alarm.label.isNotBlank()) { + Text( + text = alarm.label, + style = MaterialTheme.typography.bodyMedium, + color = MaterialTheme.colorScheme.onSurfaceVariant + ) + } + } + IconButton(onClick = onDelete) { + Icon( + imageVector = Icons.Default.Delete, + contentDescription = "Delete alarm", + tint = MaterialTheme.colorScheme.error + ) + } + } + } +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun AddAlarmDialog( + onDismiss: () -> Unit, + onConfirm: (hour: Int, minute: Int, label: String) -> Unit +) { + val now = Calendar.getInstance() + val timePickerState = rememberTimePickerState( + initialHour = now.get(Calendar.HOUR_OF_DAY), + initialMinute = now.get(Calendar.MINUTE), + is24Hour = true + ) + var label by remember { mutableStateOf("") } + + Dialog( + onDismissRequest = onDismiss, + properties = DialogProperties(usePlatformDefaultWidth = false) + ) { + Surface( + modifier = Modifier + .fillMaxWidth() + .padding(16.dp), + shape = MaterialTheme.shapes.extraLarge, + color = MaterialTheme.colorScheme.surface, + tonalElevation = 6.dp + ) { + Column( + modifier = Modifier.padding(24.dp), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text( + text = "Set Alarm", + style = MaterialTheme.typography.titleMedium, + fontWeight = FontWeight.SemiBold, + modifier = Modifier + .fillMaxWidth() + .padding(bottom = 16.dp) + ) + + TimePicker(state = timePickerState) + + Spacer(modifier = Modifier.height(16.dp)) + + OutlinedTextField( + value = label, + onValueChange = { label = it }, + label = { Text("Label (optional)") }, + singleLine = true, + modifier = Modifier.fillMaxWidth() + ) + + Spacer(modifier = Modifier.height(24.dp)) + + Row( + modifier = Modifier.fillMaxWidth(), + horizontalArrangement = Arrangement.End + ) { + TextButton(onClick = onDismiss) { + Text("Cancel") + } + FilledTonalButton( + onClick = { + onConfirm(timePickerState.hour, timePickerState.minute, label.trim()) + }, + modifier = Modifier.padding(start = 8.dp) + ) { + Text("Set Alarm") + } + } + } + } + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/MainViewModel.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/MainViewModel.kt new file mode 100644 index 0000000..5ec33ee --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/MainViewModel.kt @@ -0,0 +1,79 @@ +package com.example.helios_alarm_clock.ui + +import android.content.Context +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import com.example.helios_alarm_clock.data.AlarmDao +import com.example.helios_alarm_clock.data.AlarmEntity +import com.example.helios_alarm_clock.service.KtorService +import com.example.helios_alarm_clock.util.AlarmScheduler +import com.example.helios_alarm_clock.util.getLocalIpAddress +import dagger.hilt.android.lifecycle.HiltViewModel +import dagger.hilt.android.qualifiers.ApplicationContext +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.SharingStarted +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import kotlinx.coroutines.flow.stateIn +import kotlinx.coroutines.launch +import java.util.Calendar +import java.util.UUID +import javax.inject.Inject + +@HiltViewModel +class MainViewModel @Inject constructor( + private val alarmDao: AlarmDao, + private val alarmScheduler: AlarmScheduler, + @param:ApplicationContext private val context: Context +) : ViewModel() { + + val alarms: StateFlow> = alarmDao.observeAll() + .stateIn(viewModelScope, SharingStarted.WhileSubscribed(5000), emptyList()) + + private val _serverRunning = MutableStateFlow(false) + val serverRunning: StateFlow = _serverRunning.asStateFlow() + + val ipAddress: String + get() = getLocalIpAddress() ?: "No network" + + val port: Int = KtorService.PORT + + fun startServer() { + KtorService.start(context) + _serverRunning.value = true + } + + fun stopServer() { + KtorService.stop(context) + _serverRunning.value = false + } + + fun createAlarm(hour: Int, minute: Int, label: String) { + viewModelScope.launch { + val now = Calendar.getInstance() + val trigger = Calendar.getInstance().apply { + set(Calendar.HOUR_OF_DAY, hour) + set(Calendar.MINUTE, minute) + set(Calendar.SECOND, 0) + set(Calendar.MILLISECOND, 0) + if (before(now)) add(Calendar.DAY_OF_YEAR, 1) + } + val entity = AlarmEntity( + id = UUID.randomUUID().toString(), + hour = hour, + minute = minute, + label = label, + triggerTimeMillis = trigger.timeInMillis + ) + alarmDao.insert(entity) + alarmScheduler.schedule(entity) + } + } + + fun deleteAlarm(alarm: AlarmEntity) { + viewModelScope.launch { + alarmScheduler.cancel(alarm) + alarmDao.deleteById(alarm.id) + } + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Color.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Color.kt new file mode 100644 index 0000000..52e93c1 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Color.kt @@ -0,0 +1,23 @@ +package com.example.helios_alarm_clock.ui.theme + +import androidx.compose.ui.graphics.Color + +val Primary = Color(0xFFFFB74D) +val OnPrimary = Color(0xFF1A1A1A) +val PrimaryContainer = Color(0xFF3E2700) +val OnPrimaryContainer = Color(0xFFFFDDB3) + +val Secondary = Color(0xFF90CAF9) +val OnSecondary = Color(0xFF1A1A1A) +val SecondaryContainer = Color(0xFF0D2B45) +val OnSecondaryContainer = Color(0xFFD1E4FF) + +val Background = Color(0xFF121212) +val OnBackground = Color(0xFFE6E1DC) +val Surface = Color(0xFF1E1E1E) +val SurfaceVariant = Color(0xFF2A2A2A) +val OnSurface = Color(0xFFE6E1DC) +val OnSurfaceVariant = Color(0xFFA0A0A0) + +val Error = Color(0xFFEF5350) +val OnError = Color(0xFF1A1A1A) diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Theme.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Theme.kt new file mode 100644 index 0000000..aa61bda --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Theme.kt @@ -0,0 +1,33 @@ +package com.example.helios_alarm_clock.ui.theme + +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.runtime.Composable + +private val DarkColorScheme = darkColorScheme( + primary = Primary, + onPrimary = OnPrimary, + primaryContainer = PrimaryContainer, + onPrimaryContainer = OnPrimaryContainer, + secondary = Secondary, + onSecondary = OnSecondary, + secondaryContainer = SecondaryContainer, + onSecondaryContainer = OnSecondaryContainer, + background = Background, + onBackground = OnBackground, + surface = Surface, + surfaceVariant = SurfaceVariant, + onSurface = OnSurface, + onSurfaceVariant = OnSurfaceVariant, + error = Error, + onError = OnError +) + +@Composable +fun HeliosTheme(content: @Composable () -> Unit) { + MaterialTheme( + colorScheme = DarkColorScheme, + typography = HeliosTypography, + content = content + ) +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Type.kt b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Type.kt new file mode 100644 index 0000000..5bdd96f --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/ui/theme/Type.kt @@ -0,0 +1,43 @@ +package com.example.helios_alarm_clock.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +val HeliosTypography = Typography( + headlineLarge = TextStyle( + fontWeight = FontWeight.Light, + fontSize = 32.sp, + lineHeight = 40.sp + ), + headlineMedium = TextStyle( + fontWeight = FontWeight.Light, + fontSize = 28.sp, + lineHeight = 36.sp + ), + titleMedium = TextStyle( + fontWeight = FontWeight.Medium, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.15.sp + ), + bodyLarge = TextStyle( + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ), + bodyMedium = TextStyle( + fontWeight = FontWeight.Normal, + fontSize = 14.sp, + lineHeight = 20.sp, + letterSpacing = 0.25.sp + ), + labelSmall = TextStyle( + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) +) diff --git a/app/src/main/java/com/example/helios_alarm_clock/util/AlarmScheduler.kt b/app/src/main/java/com/example/helios_alarm_clock/util/AlarmScheduler.kt new file mode 100644 index 0000000..1a85220 --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/util/AlarmScheduler.kt @@ -0,0 +1,48 @@ +package com.example.helios_alarm_clock.util + +import android.app.AlarmManager +import android.app.PendingIntent +import android.content.Context +import android.content.Intent +import com.example.helios_alarm_clock.data.AlarmEntity +import com.example.helios_alarm_clock.receiver.AlarmReceiver +import dagger.hilt.android.qualifiers.ApplicationContext +import javax.inject.Inject +import javax.inject.Singleton + +@Singleton +class AlarmScheduler @Inject constructor( + @param:ApplicationContext private val context: Context +) { + + fun schedule(alarm: AlarmEntity) { + val alarmManager = context.getSystemService(AlarmManager::class.java) + val intent = Intent(context, AlarmReceiver::class.java).apply { + putExtra(AlarmReceiver.EXTRA_ALARM_ID, alarm.id) + putExtra(AlarmReceiver.EXTRA_ALARM_LABEL, alarm.label) + } + val pendingIntent = PendingIntent.getBroadcast( + context, + alarm.id.hashCode(), + intent, + PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE + ) + alarmManager.setExactAndAllowWhileIdle( + AlarmManager.RTC_WAKEUP, + alarm.triggerTimeMillis, + pendingIntent + ) + } + + fun cancel(alarm: AlarmEntity) { + val alarmManager = context.getSystemService(AlarmManager::class.java) + val intent = Intent(context, AlarmReceiver::class.java) + val pendingIntent = PendingIntent.getBroadcast( + context, + alarm.id.hashCode(), + intent, + PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE + ) + alarmManager.cancel(pendingIntent) + } +} diff --git a/app/src/main/java/com/example/helios_alarm_clock/util/NetworkUtils.kt b/app/src/main/java/com/example/helios_alarm_clock/util/NetworkUtils.kt new file mode 100644 index 0000000..715926c --- /dev/null +++ b/app/src/main/java/com/example/helios_alarm_clock/util/NetworkUtils.kt @@ -0,0 +1,15 @@ +package com.example.helios_alarm_clock.util + +import java.net.Inet4Address +import java.net.NetworkInterface + +fun getLocalIpAddress(): String? { + return try { + NetworkInterface.getNetworkInterfaces()?.toList() + ?.flatMap { it.inetAddresses.toList() } + ?.firstOrNull { !it.isLoopbackAddress && it is Inet4Address } + ?.hostAddress + } catch (_: Exception) { + null + } +} diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..a0111b3 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..a0111b3 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..8c12e6d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..782c9a4 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..8c12e6d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..023a85f Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..ebe4711 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..023a85f Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..a151099 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..28831bb Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..a151099 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..82c4f75 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..fd1f2e1 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..82c4f75 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..2fca466 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..cc0cc3f Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..2fca466 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..e5f755e --- /dev/null +++ b/app/src/main/res/values-night/themes.xml @@ -0,0 +1,7 @@ + + + diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..fc5afcc --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Helios Alarm + diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..e5f755e --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,7 @@ + + + diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..4df9255 --- /dev/null +++ b/app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml new file mode 100644 index 0000000..9ee9997 --- /dev/null +++ b/app/src/main/res/xml/data_extraction_rules.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/test/java/com/example/helios_alarm_clock/ExampleUnitTest.kt b/app/src/test/java/com/example/helios_alarm_clock/ExampleUnitTest.kt new file mode 100644 index 0000000..c9be2c9 --- /dev/null +++ b/app/src/test/java/com/example/helios_alarm_clock/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package com.example.helios_alarm_clock + +import org.junit.Test + +import org.junit.Assert.* + +/** + * Example local unit test, which will execute on the development machine (host). + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +class ExampleUnitTest { + @Test + fun addition_isCorrect() { + assertEquals(4, 2 + 2) + } +} \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..760ceab --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,7 @@ +plugins { + alias(libs.plugins.android.application) apply false + alias(libs.plugins.kotlin.serialization) apply false + alias(libs.plugins.compose.compiler) apply false + alias(libs.plugins.ksp) apply false + alias(libs.plugins.hilt) apply false +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..2660388 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,24 @@ +# Project-wide Gradle settings. +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. For more details, visit +# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects +# org.gradle.parallel=true +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true +# Kotlin code style for this project: "official" or "obsolete": +kotlin.code.style=official +# Enables namespacing of each library's R class so that its R class includes only the +# resources declared in the library itself and none from the library's dependencies, +# thereby reducing the size of the R class for that library +android.nonTransitiveRClass=true +android.disallowKotlinSourceSets=false \ No newline at end of file diff --git a/gradle/gradle-daemon-jvm.properties b/gradle/gradle-daemon-jvm.properties new file mode 100644 index 0000000..6c1139e --- /dev/null +++ b/gradle/gradle-daemon-jvm.properties @@ -0,0 +1,12 @@ +#This file is generated by updateDaemonJvm +toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect +toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect +toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect +toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect +toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/73bcfb608d1fde9fb62e462f834a3299/redirect +toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/846ee0d876d26a26f37aa1ce8de73224/redirect +toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect +toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect +toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/9482ddec596298c84656d31d16652665/redirect +toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/39701d92e1756bb2f141eb67cd4c660e/redirect +toolchainVersion=21 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000..29be198 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,62 @@ +[versions] +agp = "9.0.1" +kotlin = "2.2.10" +ksp = "2.2.10-2.0.2" +composeBom = "2025.12.00" +hilt = "2.59.1" +room = "2.8.4" +ktor = "3.4.0" +lifecycle = "2.9.0" +activityCompose = "1.10.1" +coreKtx = "1.16.0" +serialization = "1.8.1" + +[libraries] +# AndroidX Core +androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } +androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } + +# Compose BOM +compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } +compose-ui = { group = "androidx.compose.ui", name = "ui" } +compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } +compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } +compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } +compose-material3 = { group = "androidx.compose.material3", name = "material3" } +compose-material-icons = { group = "androidx.compose.material", name = "material-icons-core" } + +# Lifecycle +lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" } +lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" } +lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" } + +# Hilt +hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" } +hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" } +hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version = "1.2.0" } + +# Room +room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" } +room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" } +room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" } + +# Ktor Server (CIO engine — Netty native transport crashes on Android) +ktor-server-core = { group = "io.ktor", name = "ktor-server-core", version.ref = "ktor" } +ktor-server-cio = { group = "io.ktor", name = "ktor-server-cio", version.ref = "ktor" } +ktor-server-content-negotiation = { group = "io.ktor", name = "ktor-server-content-negotiation", version.ref = "ktor" } +ktor-serialization-kotlinx-json = { group = "io.ktor", name = "ktor-serialization-kotlinx-json", version.ref = "ktor" } + +# Serialization +kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serialization" } + +# Test +junit = { group = "junit", name = "junit", version = "4.13.2" } +androidx-junit = { group = "androidx.test.ext", name = "junit", version = "1.2.1" } +androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version = "3.6.1" } + +[plugins] +android-application = { id = "com.android.application", version.ref = "agp" } +kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } +compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } +ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } +hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..8bdaf60 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..b5a3527 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,9 @@ +#Sat Feb 14 15:36:03 CET 2026 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionSha256Sum=72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..ef07e01 --- /dev/null +++ b/gradlew @@ -0,0 +1,251 @@ +#!/bin/sh + +# +# Copyright © 2015 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH="\\\"\\\"" + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..db3a6ac --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH= + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/helios-alarm-app-icon.png b/helios-alarm-app-icon.png new file mode 100644 index 0000000..2582ae9 Binary files /dev/null and b/helios-alarm-app-icon.png differ diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..e2a7594 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + repositories { + google { + content { + includeGroupByRegex("com\\.android.*") + includeGroupByRegex("com\\.google.*") + includeGroupByRegex("androidx.*") + } + } + mavenCentral() + gradlePluginPortal() + } +} +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" +} +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + google() + mavenCentral() + } +} + +rootProject.name = "helios-alarm-clock" +include(":app")