initial commit

This commit is contained in:
2026-05-26 00:51:07 -07:00
commit be631985cb
31 changed files with 1157 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:icon="@drawable/ic_timer"
android:label="Countdown Timer"
android:supportsRtl="true"
android:theme="@style/Theme.CountdownTimer">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>