From cee3a0ffec3ef9010b643196f544ff6ed6690c67 Mon Sep 17 00:00:00 2001 From: Tamim Hossain <132823494+CodeWithTamim@users.noreply.github.com> Date: Fri, 15 Nov 2024 15:07:30 +0600 Subject: [PATCH] Rename styles.xml and themes.xml for consistency with Android Studio templates (#3950) Updated the naming of `styles.xml` and `themes.xml` to align with the new Android Studio template conventions. This follows up on commit `18c0143` where I introduced the new android studio project template. - Verified and tested the changes thoroughly to ensure that the app behaves as expected, with no regressions. - Ensured all affected references and dependencies were updated accordingly. This keeps the project consistent with modern Android development practices and improves maintainability. --- V2rayNG/app/src/main/res/values-night/{styles.xml => themes.xml} | 0 V2rayNG/app/src/main/res/values/{styles.xml => themes.xml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename V2rayNG/app/src/main/res/values-night/{styles.xml => themes.xml} (100%) rename V2rayNG/app/src/main/res/values/{styles.xml => themes.xml} (100%) diff --git a/V2rayNG/app/src/main/res/values-night/styles.xml b/V2rayNG/app/src/main/res/values-night/themes.xml similarity index 100% rename from V2rayNG/app/src/main/res/values-night/styles.xml rename to V2rayNG/app/src/main/res/values-night/themes.xml diff --git a/V2rayNG/app/src/main/res/values/styles.xml b/V2rayNG/app/src/main/res/values/themes.xml similarity index 100% rename from V2rayNG/app/src/main/res/values/styles.xml rename to V2rayNG/app/src/main/res/values/themes.xml