From eda8030ad01c4bf097651ce604e2ed5da92bdf13 Mon Sep 17 00:00:00 2001 From: Aditya Wasan Date: Sun, 31 Dec 2023 02:51:49 -0500 Subject: init: add passkeys module Signed-off-by: Aditya Wasan --- passkeys/src/main/AndroidManifest.xml | 12 ++ .../main/res/drawable/ic_launcher_background.xml | 170 +++++++++++++++++++++ .../main/res/drawable/ic_launcher_foreground.xml | 30 ++++ .../src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 6 + .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 6 + passkeys/src/main/res/mipmap-hdpi/ic_launcher.webp | Bin 0 -> 1404 bytes .../main/res/mipmap-hdpi/ic_launcher_round.webp | Bin 0 -> 2898 bytes passkeys/src/main/res/mipmap-mdpi/ic_launcher.webp | Bin 0 -> 982 bytes .../main/res/mipmap-mdpi/ic_launcher_round.webp | Bin 0 -> 1772 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.webp | Bin 0 -> 1900 bytes .../main/res/mipmap-xhdpi/ic_launcher_round.webp | Bin 0 -> 3918 bytes .../src/main/res/mipmap-xxhdpi/ic_launcher.webp | Bin 0 -> 2884 bytes .../main/res/mipmap-xxhdpi/ic_launcher_round.webp | Bin 0 -> 5914 bytes .../src/main/res/mipmap-xxxhdpi/ic_launcher.webp | Bin 0 -> 3844 bytes .../main/res/mipmap-xxxhdpi/ic_launcher_round.webp | Bin 0 -> 7778 bytes passkeys/src/main/res/values-night/themes.xml | 16 ++ passkeys/src/main/res/values/colors.xml | 10 ++ passkeys/src/main/res/values/strings.xml | 3 + passkeys/src/main/res/values/themes.xml | 16 ++ 19 files changed, 269 insertions(+) create mode 100644 passkeys/src/main/AndroidManifest.xml create mode 100644 passkeys/src/main/res/drawable/ic_launcher_background.xml create mode 100644 passkeys/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 passkeys/src/main/res/mipmap-hdpi/ic_launcher.webp create mode 100644 passkeys/src/main/res/mipmap-hdpi/ic_launcher_round.webp create mode 100644 passkeys/src/main/res/mipmap-mdpi/ic_launcher.webp create mode 100644 passkeys/src/main/res/mipmap-mdpi/ic_launcher_round.webp create mode 100644 passkeys/src/main/res/mipmap-xhdpi/ic_launcher.webp create mode 100644 passkeys/src/main/res/mipmap-xhdpi/ic_launcher_round.webp create mode 100644 passkeys/src/main/res/mipmap-xxhdpi/ic_launcher.webp create mode 100644 passkeys/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp create mode 100644 passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher.webp create mode 100644 passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp create mode 100644 passkeys/src/main/res/values-night/themes.xml create mode 100644 passkeys/src/main/res/values/colors.xml create mode 100644 passkeys/src/main/res/values/strings.xml create mode 100644 passkeys/src/main/res/values/themes.xml (limited to 'passkeys/src') diff --git a/passkeys/src/main/AndroidManifest.xml b/passkeys/src/main/AndroidManifest.xml new file mode 100644 index 00000000..7a44af6e --- /dev/null +++ b/passkeys/src/main/AndroidManifest.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/passkeys/src/main/res/drawable/ic_launcher_background.xml b/passkeys/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 00000000..140f8294 --- /dev/null +++ b/passkeys/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/passkeys/src/main/res/drawable/ic_launcher_foreground.xml b/passkeys/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 00000000..5c3bfcd6 --- /dev/null +++ b/passkeys/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 00000000..5ad9ce15 --- /dev/null +++ b/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 00000000..5ad9ce15 --- /dev/null +++ b/passkeys/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/passkeys/src/main/res/mipmap-hdpi/ic_launcher.webp b/passkeys/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 00000000..c209e78e Binary files /dev/null and b/passkeys/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/passkeys/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/passkeys/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 00000000..b2dfe3d1 Binary files /dev/null and b/passkeys/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/passkeys/src/main/res/mipmap-mdpi/ic_launcher.webp b/passkeys/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 00000000..4f0f1d64 Binary files /dev/null and b/passkeys/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/passkeys/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/passkeys/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 00000000..62b611da Binary files /dev/null and b/passkeys/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/passkeys/src/main/res/mipmap-xhdpi/ic_launcher.webp b/passkeys/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 00000000..948a3070 Binary files /dev/null and b/passkeys/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/passkeys/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/passkeys/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..1b9a6956 Binary files /dev/null and b/passkeys/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 00000000..28d4b77f Binary files /dev/null and b/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..9287f508 Binary files /dev/null and b/passkeys/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 00000000..aa7d6427 Binary files /dev/null and b/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..9126ae37 Binary files /dev/null and b/passkeys/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/passkeys/src/main/res/values-night/themes.xml b/passkeys/src/main/res/values-night/themes.xml new file mode 100644 index 00000000..f0a927fb --- /dev/null +++ b/passkeys/src/main/res/values-night/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/passkeys/src/main/res/values/colors.xml b/passkeys/src/main/res/values/colors.xml new file mode 100644 index 00000000..09837df6 --- /dev/null +++ b/passkeys/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/passkeys/src/main/res/values/strings.xml b/passkeys/src/main/res/values/strings.xml new file mode 100644 index 00000000..485ed028 --- /dev/null +++ b/passkeys/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + passkeys + \ No newline at end of file diff --git a/passkeys/src/main/res/values/themes.xml b/passkeys/src/main/res/values/themes.xml new file mode 100644 index 00000000..4210ce7d --- /dev/null +++ b/passkeys/src/main/res/values/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file -- cgit v1.2.3