Compare commits
No commits in common. "master" and "1.0.0" have entirely different histories.
@ -10,12 +10,12 @@
|
||||
<deviceKey>
|
||||
<Key>
|
||||
<type value="VIRTUAL_DEVICE_PATH" />
|
||||
<value value="$USER_HOME$/.android/avd/Pixel_4_XL_API_34.avd" />
|
||||
<value value="$USER_HOME$/.android/avd/Pixel_2_API_34.avd" />
|
||||
</Key>
|
||||
</deviceKey>
|
||||
</Target>
|
||||
</targetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2024-04-29T19:01:52.695697079Z" />
|
||||
<timeTargetWasSelectedWithDropDown value="2024-04-21T10:28:14.063607866Z" />
|
||||
</State>
|
||||
</entry>
|
||||
</value>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -11,8 +11,8 @@ android {
|
||||
applicationId "com.cringe_studios.code_guard"
|
||||
minSdk 21
|
||||
targetSdk 34
|
||||
versionCode 11
|
||||
versionName "1.1"
|
||||
versionCode 9
|
||||
versionName "1.0.0"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
@ -68,23 +68,23 @@ dependencies {
|
||||
}
|
||||
}
|
||||
|
||||
implementation 'androidx.appcompat:appcompat:1.7.0'
|
||||
implementation 'com.google.android.material:material:1.12.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'com.google.android.material:material:1.11.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
implementation 'androidx.lifecycle:lifecycle-livedata:2.8.5'
|
||||
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.8.5'
|
||||
implementation 'androidx.navigation:navigation-fragment:2.8.0'
|
||||
implementation 'androidx.navigation:navigation-ui:2.8.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-livedata:2.7.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.7.0'
|
||||
implementation 'androidx.navigation:navigation-fragment:2.7.7'
|
||||
implementation 'androidx.navigation:navigation-ui:2.7.7'
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
||||
implementation "androidx.biometric:biometric:1.1.0"
|
||||
implementation 'com.cringe_studios:CringeAuthenticatorLibrary:1.7'
|
||||
implementation 'com.google.mlkit:barcode-scanning:17.3.0'
|
||||
implementation 'com.cringe_studios:CringeAuthenticatorLibrary:1.6'
|
||||
implementation 'com.google.mlkit:barcode-scanning:17.2.0'
|
||||
implementation 'com.google.code.gson:gson:2.10.1'
|
||||
implementation 'androidx.activity:activity:1.9.2'
|
||||
implementation 'androidx.activity:activity:1.9.0'
|
||||
|
||||
def camerax_version = "1.3.4"
|
||||
def camerax_version = "1.3.3"
|
||||
implementation "androidx.camera:camera-core:${camerax_version}"
|
||||
implementation "androidx.camera:camera-camera2:${camerax_version}"
|
||||
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
|
||||
|
@ -262,9 +262,6 @@ public class SettingsFragment extends NamedFragment {
|
||||
binding.settingsGroupSize.setValue(SettingsUtil.getDigitGroupSize(requireContext()));
|
||||
binding.settingsGroupSize.addOnChangeListener((view, value, fromUser) -> SettingsUtil.setDigitGroupSize(requireContext(), (int) value));
|
||||
|
||||
binding.settingsShowNextCode.setChecked(SettingsUtil.isShowNextCode(requireContext()));
|
||||
binding.settingsShowNextCode.setOnCheckedChangeListener((view, checked) -> SettingsUtil.setShowNextCode(requireContext(), checked));
|
||||
|
||||
binding.settingsCreateBackup.setOnClickListener(view -> {
|
||||
new StyledDialogBuilder(requireContext())
|
||||
.setTitle(R.string.create_backup)
|
||||
|
@ -19,8 +19,6 @@ public class IconPack {
|
||||
}
|
||||
|
||||
public Icon findIconForIssuer(String issuer) {
|
||||
if(issuer == null) return null;
|
||||
|
||||
for(Icon icon : icons) {
|
||||
for(String i : icon.getMetadata().getIssuer()) {
|
||||
if(issuer.equalsIgnoreCase(i)) {
|
||||
|
@ -1,5 +1,7 @@
|
||||
package com.cringe_studios.code_guard.model;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
import com.cringe_studios.cringe_authenticator_library.OTP;
|
||||
import com.cringe_studios.cringe_authenticator_library.OTPAlgorithm;
|
||||
import com.cringe_studios.cringe_authenticator_library.OTPException;
|
||||
@ -102,10 +104,6 @@ public class OTPData implements Serializable {
|
||||
return getOTP().getPin();
|
||||
}
|
||||
|
||||
public String getNextPin() throws OTPException {
|
||||
return getOTP().getNextPin();
|
||||
}
|
||||
|
||||
public void incrementCounter() {
|
||||
getOTP().incrementCounter();
|
||||
this.counter = getOTP().getCounter();
|
||||
|
@ -80,7 +80,6 @@ public class OTPListAdapter extends RecyclerView.Adapter<OTPListItem> {
|
||||
}
|
||||
|
||||
holder.getBinding().otpCodeIcon.setVisibility(SettingsUtil.isShowImages(context) ? View.VISIBLE : View.GONE);
|
||||
holder.getBinding().nextOtpCode.setVisibility(SettingsUtil.isShowNextCode(context) ? View.VISIBLE : View.GONE);
|
||||
|
||||
holder.getBinding().label.setText(String.format("%s%s", data.getIssuer() == null || data.getIssuer().isEmpty() ? "" : data.getIssuer() + ": ", data.getName()));
|
||||
holder.getBinding().progress.setVisibility(data.getType() == OTPType.TOTP ? View.VISIBLE : View.GONE);
|
||||
@ -246,8 +245,8 @@ public class OTPListAdapter extends RecyclerView.Adapter<OTPListItem> {
|
||||
|
||||
List<OTPData> filtered = new ArrayList<>();
|
||||
for(OTPData d : allOTPs) {
|
||||
if((d.getName() != null && d.getName().toLowerCase().contains(query))
|
||||
|| (d.getIssuer() != null && d.getIssuer().toLowerCase().contains(query))) filtered.add(d);
|
||||
if(d.getName().toLowerCase().contains(query)
|
||||
|| d.getIssuer().toLowerCase().contains(query)) filtered.add(d);
|
||||
}
|
||||
|
||||
filteredItems = filtered;
|
||||
|
@ -53,7 +53,6 @@ public class OTPListItem extends RecyclerView.ViewHolder {
|
||||
|
||||
public void refresh() throws OTPException {
|
||||
binding.otpCode.setText(formatCode(otpData.getPin()));
|
||||
binding.nextOtpCode.setText(formatCode(otpData.getNextPin()));
|
||||
|
||||
if(otpData.getType() == OTPType.TOTP) {
|
||||
long timeDiff = otpData.getNextDueTime() - System.currentTimeMillis() / 1000;
|
||||
|
@ -268,14 +268,6 @@ public class SettingsUtil {
|
||||
return ctx.getSharedPreferences(GENERAL_PREFS_NAME, Context.MODE_PRIVATE).getBoolean("searchEverywhere", true);
|
||||
}
|
||||
|
||||
public static void setShowNextCode(Context ctx, boolean enable) {
|
||||
ctx.getSharedPreferences(GENERAL_PREFS_NAME, Context.MODE_PRIVATE).edit().putBoolean("showNextCode", enable).apply();
|
||||
}
|
||||
|
||||
public static boolean isShowNextCode(Context ctx) {
|
||||
return ctx.getSharedPreferences(GENERAL_PREFS_NAME, Context.MODE_PRIVATE).getBoolean("showNextCode", false);
|
||||
}
|
||||
|
||||
public static void setHiddenStyle(Context ctx, HiddenStyle style) {
|
||||
ctx.getSharedPreferences(GENERAL_PREFS_NAME, Context.MODE_PRIVATE).edit().putString("hiddenStyle", style.name()).apply();
|
||||
}
|
||||
|
@ -193,12 +193,6 @@
|
||||
android:valueTo="6"
|
||||
android:stepSize="1" />
|
||||
|
||||
<androidx.appcompat.widget.SwitchCompat
|
||||
android:id="@+id/settings_show_next_code"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/settings_show_next_code" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
@ -274,18 +268,18 @@
|
||||
android:text="@string/settings_icon_packs_manage"
|
||||
android:textAllCaps="false" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginVertical="10dp"
|
||||
android:background="@drawable/theme_gradient" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/settings_super_secret_settings"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginVertical="10dp"
|
||||
android:background="@drawable/theme_gradient" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
@ -52,36 +52,21 @@
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<LinearLayout
|
||||
<TextView
|
||||
android:id="@+id/otpCode"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/otpCode"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="monospace"
|
||||
android:gravity="top|center"
|
||||
android:textSize="24sp"
|
||||
tools:text="000000" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/nextOtpCode"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
tools:text="111111" />
|
||||
</LinearLayout>
|
||||
android:fontFamily="monospace"
|
||||
android:gravity="top|center"
|
||||
android:textSize="24sp"
|
||||
tools:text="000000" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/progress"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
app:srcCompat="@drawable/progress_circle"
|
||||
tools:visibility="gone" />
|
||||
app:srcCompat="@drawable/progress_circle" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageButton
|
||||
android:id="@+id/refresh"
|
||||
|
@ -176,5 +176,4 @@
|
||||
<string name="style_stars">Sterne</string>
|
||||
<string name="style_dots">Punkte</string>
|
||||
<string name="settings_group_size">Gruppengröße für Ziffern</string>
|
||||
<string name="settings_show_next_code">Nächsten Code anzeigen</string>
|
||||
</resources>
|
@ -176,5 +176,4 @@
|
||||
<string name="style_dots">Points</string>
|
||||
<string name="settings_group_size">Taille du groupe de chiffres</string>
|
||||
<string name="backup_create_new_password">Créer avec un nouveau mot de passe</string>
|
||||
<string name="settings_show_next_code">Afficher le code suivant</string>
|
||||
</resources>
|
@ -176,5 +176,4 @@
|
||||
<string name="style_dots">Kropki</string>
|
||||
<string name="settings_group_size">Wielkość grupy cyfr</string>
|
||||
<string name="backup_create_new_password">Utwórz z nowym hasłem</string>
|
||||
<string name="settings_show_next_code">Pokaż następny kod</string>
|
||||
</resources>
|
@ -176,5 +176,4 @@
|
||||
<string name="style_dots">Крапки</string>
|
||||
<string name="settings_group_size">Розмір групи цифр</string>
|
||||
<string name="backup_create_new_password">Створити з новим паролем</string>
|
||||
<string name="settings_show_next_code">Показати наступний код</string>
|
||||
</resources>
|
@ -197,5 +197,4 @@
|
||||
<string name="style_stars">Stars</string>
|
||||
<string name="style_dots">Dots</string>
|
||||
<string name="settings_group_size">Digit group size</string>
|
||||
<string name="settings_show_next_code">Show next code</string>
|
||||
</resources>
|
@ -1,6 +1,6 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
plugins {
|
||||
id 'com.android.application' version '8.5.0' apply false
|
||||
id 'com.android.library' version '8.5.0' apply false
|
||||
id 'com.android.application' version '8.3.2' apply false
|
||||
id 'com.android.library' version '8.3.2' apply false
|
||||
id 'com.google.protobuf' version '0.9.3' apply false
|
||||
}
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
||||
#Sat Jun 17 16:15:03 CEST 2023
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
Loading…
Reference in New Issue
Block a user