diff --git a/.gradle/8.7/executionHistory/executionHistory.bin b/.gradle/8.7/executionHistory/executionHistory.bin index addc769..c34ea47 100644 Binary files a/.gradle/8.7/executionHistory/executionHistory.bin and b/.gradle/8.7/executionHistory/executionHistory.bin differ diff --git a/.gradle/8.7/executionHistory/executionHistory.lock b/.gradle/8.7/executionHistory/executionHistory.lock index 431bda2..8979c4b 100644 Binary files a/.gradle/8.7/executionHistory/executionHistory.lock and b/.gradle/8.7/executionHistory/executionHistory.lock differ diff --git a/.gradle/8.7/fileHashes/fileHashes.bin b/.gradle/8.7/fileHashes/fileHashes.bin index 768ea21..648dfd8 100644 Binary files a/.gradle/8.7/fileHashes/fileHashes.bin and b/.gradle/8.7/fileHashes/fileHashes.bin differ diff --git a/.gradle/8.7/fileHashes/fileHashes.lock b/.gradle/8.7/fileHashes/fileHashes.lock index 0a7442e..c573fd3 100644 Binary files a/.gradle/8.7/fileHashes/fileHashes.lock and b/.gradle/8.7/fileHashes/fileHashes.lock differ diff --git a/.gradle/8.7/fileHashes/resourceHashesCache.bin b/.gradle/8.7/fileHashes/resourceHashesCache.bin index e360b0e..2a46a7a 100644 Binary files a/.gradle/8.7/fileHashes/resourceHashesCache.bin and b/.gradle/8.7/fileHashes/resourceHashesCache.bin differ diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock index 0f7be1d..0053ebd 100644 Binary files a/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/.gradle/file-system.probe b/.gradle/file-system.probe index 330feb0..41b95fd 100644 Binary files a/.gradle/file-system.probe and b/.gradle/file-system.probe differ diff --git a/.idea/deviceManager.xml b/.idea/deviceManager.xml new file mode 100644 index 0000000..91f9558 --- /dev/null +++ b/.idea/deviceManager.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivityMainBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivityMainBinding.java index b1af1bb..9758662 100644 --- a/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivityMainBinding.java +++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivityMainBinding.java @@ -33,12 +33,21 @@ public final class ActivityMainBinding implements ViewBinding { @NonNull public final Button btnOverlay; + @NonNull + public final Button btnSettings; + @NonNull public final Button btnStart; @NonNull public final Button btnStop; + @NonNull + public final Button btnSubscriptions; + + @NonNull + public final Button btnTestConnection; + @NonNull public final LinearLayout mainLayout; @@ -47,15 +56,19 @@ public final class ActivityMainBinding implements ViewBinding { private ActivityMainBinding(@NonNull ScrollView rootView, @NonNull Button btnAccessibility, @NonNull Button btnLocation, @NonNull Button btnNotification, @NonNull Button btnOverlay, - @NonNull Button btnStart, @NonNull Button btnStop, @NonNull LinearLayout mainLayout, - @NonNull TextView tvStatus) { + @NonNull Button btnSettings, @NonNull Button btnStart, @NonNull Button btnStop, + @NonNull Button btnSubscriptions, @NonNull Button btnTestConnection, + @NonNull LinearLayout mainLayout, @NonNull TextView tvStatus) { this.rootView = rootView; this.btnAccessibility = btnAccessibility; this.btnLocation = btnLocation; this.btnNotification = btnNotification; this.btnOverlay = btnOverlay; + this.btnSettings = btnSettings; this.btnStart = btnStart; this.btnStop = btnStop; + this.btnSubscriptions = btnSubscriptions; + this.btnTestConnection = btnTestConnection; this.mainLayout = mainLayout; this.tvStatus = tvStatus; } @@ -111,6 +124,12 @@ public final class ActivityMainBinding implements ViewBinding { break missingId; } + id = R.id.btn_settings; + Button btnSettings = ViewBindings.findChildViewById(rootView, id); + if (btnSettings == null) { + break missingId; + } + id = R.id.btn_start; Button btnStart = ViewBindings.findChildViewById(rootView, id); if (btnStart == null) { @@ -123,6 +142,18 @@ public final class ActivityMainBinding implements ViewBinding { break missingId; } + id = R.id.btn_subscriptions; + Button btnSubscriptions = ViewBindings.findChildViewById(rootView, id); + if (btnSubscriptions == null) { + break missingId; + } + + id = R.id.btn_test_connection; + Button btnTestConnection = ViewBindings.findChildViewById(rootView, id); + if (btnTestConnection == null) { + break missingId; + } + id = R.id.main_layout; LinearLayout mainLayout = ViewBindings.findChildViewById(rootView, id); if (mainLayout == null) { @@ -136,7 +167,8 @@ public final class ActivityMainBinding implements ViewBinding { } return new ActivityMainBinding((ScrollView) rootView, btnAccessibility, btnLocation, - btnNotification, btnOverlay, btnStart, btnStop, mainLayout, tvStatus); + btnNotification, btnOverlay, btnSettings, btnStart, btnStop, btnSubscriptions, + btnTestConnection, mainLayout, tvStatus); } String missingId = rootView.getResources().getResourceName(id); throw new NullPointerException("Missing required view with ID: ".concat(missingId)); diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySettingsBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySettingsBinding.java new file mode 100644 index 0000000..cdea4ca --- /dev/null +++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySettingsBinding.java @@ -0,0 +1,145 @@ +// Generated by view binder compiler. Do not edit! +package com.jordanbot.autoride.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.CheckBox; +import android.widget.EditText; +import android.widget.ScrollView; +import android.widget.Switch; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import com.jordanbot.autoride.R; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; + +public final class ActivitySettingsBinding implements ViewBinding { + @NonNull + private final ScrollView rootView; + + @NonNull + public final Button btnSaveSettings; + + @NonNull + public final CheckBox cbCareem; + + @NonNull + public final CheckBox cbJeeny; + + @NonNull + public final CheckBox cbUber; + + @NonNull + public final EditText etMaxMinutes; + + @NonNull + public final EditText etMinPrice; + + @NonNull + public final Switch switchAutoAccept; + + @NonNull + public final Switch switchDarkMode; + + private ActivitySettingsBinding(@NonNull ScrollView rootView, @NonNull Button btnSaveSettings, + @NonNull CheckBox cbCareem, @NonNull CheckBox cbJeeny, @NonNull CheckBox cbUber, + @NonNull EditText etMaxMinutes, @NonNull EditText etMinPrice, + @NonNull Switch switchAutoAccept, @NonNull Switch switchDarkMode) { + this.rootView = rootView; + this.btnSaveSettings = btnSaveSettings; + this.cbCareem = cbCareem; + this.cbJeeny = cbJeeny; + this.cbUber = cbUber; + this.etMaxMinutes = etMaxMinutes; + this.etMinPrice = etMinPrice; + this.switchAutoAccept = switchAutoAccept; + this.switchDarkMode = switchDarkMode; + } + + @Override + @NonNull + public ScrollView getRoot() { + return rootView; + } + + @NonNull + public static ActivitySettingsBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static ActivitySettingsBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.activity_settings, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static ActivitySettingsBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.btn_save_settings; + Button btnSaveSettings = ViewBindings.findChildViewById(rootView, id); + if (btnSaveSettings == null) { + break missingId; + } + + id = R.id.cb_careem; + CheckBox cbCareem = ViewBindings.findChildViewById(rootView, id); + if (cbCareem == null) { + break missingId; + } + + id = R.id.cb_jeeny; + CheckBox cbJeeny = ViewBindings.findChildViewById(rootView, id); + if (cbJeeny == null) { + break missingId; + } + + id = R.id.cb_uber; + CheckBox cbUber = ViewBindings.findChildViewById(rootView, id); + if (cbUber == null) { + break missingId; + } + + id = R.id.et_max_minutes; + EditText etMaxMinutes = ViewBindings.findChildViewById(rootView, id); + if (etMaxMinutes == null) { + break missingId; + } + + id = R.id.et_min_price; + EditText etMinPrice = ViewBindings.findChildViewById(rootView, id); + if (etMinPrice == null) { + break missingId; + } + + id = R.id.switch_auto_accept; + Switch switchAutoAccept = ViewBindings.findChildViewById(rootView, id); + if (switchAutoAccept == null) { + break missingId; + } + + id = R.id.switch_dark_mode; + Switch switchDarkMode = ViewBindings.findChildViewById(rootView, id); + if (switchDarkMode == null) { + break missingId; + } + + return new ActivitySettingsBinding((ScrollView) rootView, btnSaveSettings, cbCareem, cbJeeny, + cbUber, etMaxMinutes, etMinPrice, switchAutoAccept, switchDarkMode); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySubscriptionBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySubscriptionBinding.java new file mode 100644 index 0000000..7da1064 --- /dev/null +++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/jordanbot/autoride/databinding/ActivitySubscriptionBinding.java @@ -0,0 +1,92 @@ +// Generated by view binder compiler. Do not edit! +package com.jordanbot.autoride.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.ScrollView; +import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import com.jordanbot.autoride.R; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; + +public final class ActivitySubscriptionBinding implements ViewBinding { + @NonNull + private final ScrollView rootView; + + @NonNull + public final Button btnSubscribeBasic; + + @NonNull + public final Button btnSubscribePro; + + @NonNull + public final TextView tvCurrentStatus; + + private ActivitySubscriptionBinding(@NonNull ScrollView rootView, + @NonNull Button btnSubscribeBasic, @NonNull Button btnSubscribePro, + @NonNull TextView tvCurrentStatus) { + this.rootView = rootView; + this.btnSubscribeBasic = btnSubscribeBasic; + this.btnSubscribePro = btnSubscribePro; + this.tvCurrentStatus = tvCurrentStatus; + } + + @Override + @NonNull + public ScrollView getRoot() { + return rootView; + } + + @NonNull + public static ActivitySubscriptionBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static ActivitySubscriptionBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.activity_subscription, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static ActivitySubscriptionBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.btn_subscribe_basic; + Button btnSubscribeBasic = ViewBindings.findChildViewById(rootView, id); + if (btnSubscribeBasic == null) { + break missingId; + } + + id = R.id.btn_subscribe_pro; + Button btnSubscribePro = ViewBindings.findChildViewById(rootView, id); + if (btnSubscribePro == null) { + break missingId; + } + + id = R.id.tv_current_status; + TextView tvCurrentStatus = ViewBindings.findChildViewById(rootView, id); + if (tvCurrentStatus == null) { + break missingId; + } + + return new ActivitySubscriptionBinding((ScrollView) rootView, btnSubscribeBasic, + btnSubscribePro, tvCurrentStatus); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/app/build/generated/source/buildConfig/debug/com/jordanbot/autoride/BuildConfig.java b/app/build/generated/source/buildConfig/debug/com/jordanbot/autoride/BuildConfig.java index cebe4a5..099f793 100644 --- a/app/build/generated/source/buildConfig/debug/com/jordanbot/autoride/BuildConfig.java +++ b/app/build/generated/source/buildConfig/debug/com/jordanbot/autoride/BuildConfig.java @@ -9,4 +9,6 @@ public final class BuildConfig { public static final String BUILD_TYPE = "debug"; public static final int VERSION_CODE = 1; public static final String VERSION_NAME = "1.0.0"; + // Field from default config. + public static final String API_KEY = "JB_8a7d6c5b4a39281706f5e4d3c2b1a0"; } diff --git a/app/build/intermediates/apk/debug/app-debug.apk b/app/build/intermediates/apk/debug/app-debug.apk index ae38fab..1117707 100644 Binary files a/app/build/intermediates/apk/debug/app-debug.apk and b/app/build/intermediates/apk/debug/app-debug.apk differ diff --git a/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof b/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof index e5ad12f..2a09827 100644 Binary files a/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof and b/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof differ diff --git a/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm b/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm index 2a45220..71ccc87 100644 Binary files a/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm and b/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm differ diff --git a/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt b/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt index 0242a46..a78937a 100644 --- a/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt +++ b/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt @@ -117,10 +117,10 @@ HSPLB/i;->(ILjava/lang/Object;)V Lf/J; HSPLf/J;->()V HSPLf/J;->(Landroid/app/Activity;Z)V -HSPLf/J;->m0()Landroid/content/Context; -HSPLf/J;->n0(Landroid/view/View;)V -HSPLf/J;->o0(Z)V +HSPLf/J;->n0()Landroid/content/Context; +HSPLf/J;->o0(Landroid/view/View;)V HSPLf/J;->p0(Z)V +HSPLf/J;->q0(Z)V Li/d; HSPLi/d;->(Landroid/content/Context;I)V HSPLi/d;->a(Landroid/content/res/Configuration;)V diff --git a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar index 5714aa3..d4cb536 100644 Binary files a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar and b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar differ diff --git a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.jordanbot.autoride-binding_classes.json b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.jordanbot.autoride-binding_classes.json index 5dd6ec0..857313f 100644 Binary files a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.jordanbot.autoride-binding_classes.json and b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.jordanbot.autoride-binding_classes.json differ diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml index c55a3b1..d9e7266 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_settings-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_settings-layout.xml new file mode 100644 index 0000000..30ec5af --- /dev/null +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_settings-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_subscription-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_subscription-layout.xml new file mode 100644 index 0000000..048cc84 --- /dev/null +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_subscription-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml index c55a3b1..d9e7266 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_settings-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_settings-layout.xml new file mode 100644 index 0000000..30ec5af --- /dev/null +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_settings-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_subscription-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_subscription-layout.xml new file mode 100644 index 0000000..048cc84 --- /dev/null +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_subscription-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex index 1cbab53..8560a22 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex new file mode 100644 index 0000000..f5b52f0 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex index 591d168..36b387d 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex index 7289ad8..7100b50 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex index e738f27..adfd59d 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex new file mode 100644 index 0000000..98f39ac Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex index f8b54af..cd02ee6 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex index 4225a16..bf85853 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/9/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/9/classes.dex index 7e40be5..5808ddd 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/9/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/9/classes.dex differ diff --git a/app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex b/app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex index 82a3f98..9bd15a7 100644 Binary files a/app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex and b/app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out index 753f376..9921365 100644 Binary files a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out and b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out differ diff --git a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm index 67afdfd..c705ed0 100644 Binary files a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm and b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm differ diff --git a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm index d008289..ecc5e18 100644 Binary files a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm and b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm differ diff --git a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json index 8296382..2683fc1 100644 Binary files a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json and b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state index ea8dcd3..f69a224 100644 Binary files a/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state and b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties index a78b66e..d617461 100644 --- a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties @@ -1,4 +1,4 @@ -#Thu May 14 18:41:05 EET 2026 +#Fri May 15 22:17:24 EET 2026 com.jordanbot.autoride.app-main-40\:/drawable/bg_bubble.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_bubble.xml.flat com.jordanbot.autoride.app-main-40\:/drawable/bg_button.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_button.xml.flat com.jordanbot.autoride.app-main-40\:/drawable/bg_button_danger.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_button_danger.xml.flat @@ -15,9 +15,25 @@ com.jordanbot.autoride.app-main-42\:/drawable/bg_button.xml=/Users/hamzaaleghwai com.jordanbot.autoride.app-main-42\:/drawable/bg_button_danger.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_button_danger.xml.flat com.jordanbot.autoride.app-main-42\:/drawable/bg_button_primary.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_button_primary.xml.flat com.jordanbot.autoride.app-main-42\:/drawable/bg_card.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_card.xml.flat +com.jordanbot.autoride.app-main-42\:/drawable/ic_launcher_background.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_background.xml.flat com.jordanbot.autoride.app-main-42\:/drawable/ic_launcher_foreground.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat com.jordanbot.autoride.app-main-42\:/mipmap-anydpi-v26/ic_launcher.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat com.jordanbot.autoride.app-main-42\:/mipmap-anydpi-v26/ic_launcher_round.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat +com.jordanbot.autoride.app-main-42\:/mipmap-hdpi/ic_launcher.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-hdpi/ic_launcher_foreground.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_foreground.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-hdpi/ic_launcher_round.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-mdpi/ic_launcher.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-mdpi/ic_launcher_foreground.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_foreground.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-mdpi/ic_launcher_round.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xhdpi/ic_launcher.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xhdpi/ic_launcher_foreground.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_foreground.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xhdpi/ic_launcher_round.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxhdpi/ic_launcher.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxhdpi/ic_launcher_foreground.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_foreground.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxhdpi/ic_launcher_round.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxxhdpi/ic_launcher.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxxhdpi/ic_launcher_foreground.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_foreground.webp.flat +com.jordanbot.autoride.app-main-42\:/mipmap-xxxhdpi/ic_launcher_round.webp=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.webp.flat com.jordanbot.autoride.app-main-42\:/xml/accessibility_config.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_accessibility_config.xml.flat com.jordanbot.autoride.app-main-42\:/xml/backup_rules.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat com.jordanbot.autoride.app-main-42\:/xml/data_extraction_rules.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat @@ -25,5 +41,7 @@ com.jordanbot.autoride.app-mergeDebugResources-37\:/layout/activity_main.xml=/Us com.jordanbot.autoride.app-mergeDebugResources-37\:/layout/overlay_expanded.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_overlay_expanded.xml.flat com.jordanbot.autoride.app-mergeDebugResources-37\:/layout/overlay_floating.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_overlay_floating.xml.flat com.jordanbot.autoride.app-mergeDebugResources-39\:/layout/activity_main.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat +com.jordanbot.autoride.app-mergeDebugResources-39\:/layout/activity_settings.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_settings.xml.flat +com.jordanbot.autoride.app-mergeDebugResources-39\:/layout/activity_subscription.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_subscription.xml.flat com.jordanbot.autoride.app-mergeDebugResources-39\:/layout/overlay_expanded.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_overlay_expanded.xml.flat com.jordanbot.autoride.app-mergeDebugResources-39\:/layout/overlay_floating.xml=/Users/hamzaaleghwairyeen/development/App/jordan_bot/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_overlay_floating.xml.flat diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..beec40d --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,13938 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + #ff000000 + #ffffffff + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #1f000000 + #8a000000 + @color/material_grey_800 + @android:color/white + @color/material_grey_850 + @color/material_grey_50 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #1d873b + #d93025 + #FF424242 + #FFFFFFFF + #03000000 + #37000000 + @android:color/white + #1F000000 + @android:color/black + @android:color/white + #90000000 + #1F000000 + #90000000 + #DE000000 + #14000000 + #121212 + #CF6679 + #FFFFFF + #000000 + #000000 + #000000 + #FFFFFF + #BA86FC + #000000 + #3700B3 + #03DAC6 + #03DAC6 + #121212 + #FFFFFF + #B00020 + #000000 + #FFFFFF + #FFFFFF + #000000 + #000000 + #6200EE + #3700B3 + #3700B3 + #03DAC6 + #018786 + #FFFFFF + @android:color/transparent + #14000000 + #44000000 + #0A000000 + #0F000000 + #1AFFFFFF + #2EFFFFFF + #323232 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #ff7043 + #ff5722 + @android:color/white + @android:color/black + #6680cbc4 + #66009688 + #ff000000 + #ff000000 + #ff410e0b + #ffffffff + #ff601410 + #ff8c1d18 + #ffb3261e + #ffdc362e + #ffe46962 + #ffec928e + #fff2b8b5 + #fff9dedc + #fffceeee + #fffffbf9 + #ff000000 + #ff1d1b20 + #ffffffff + #ff211f26 + #ff2b2930 + #ff322f35 + #ff36343b + #ff3b383e + #ff48464c + #ff0f0d13 + #ff605d64 + #ff79767d + #ff141218 + #ff938f96 + #ffaea9b1 + #ffcac5cd + #ffded8e1 + #ffe6e0e9 + #ffece6f0 + #fff3edf7 + #fff5eff7 + #fff7f2fa + #fffef7ff + #fffffbff + #ff000000 + #ff1d1a22 + #ffffffff + #ff322f37 + #ff49454f + #ff605d66 + #ff79747e + #ff938f99 + #ffaea9b4 + #ffcac4d0 + #ffe7e0ec + #fff5eefa + #fffffbfe + #ff000000 + #ff21005d + #ffffffff + #ff381e72 + #ff4f378b + #ff6750a4 + #ff7f67be + #ff9a82db + #ffb69df8 + #ffd0bcff + #ffeaddff + #fff6edff + #fffffbfe + #ff000000 + #ff1d192b + #ffffffff + #ff332d41 + #ff4a4458 + #ff625b71 + #ff7a7289 + #ff958da5 + #ffb0a7c0 + #ffccc2dc + #ffe8def8 + #fff6edff + #fffffbfe + #ff000000 + #ff31111d + #ffffffff + #ff492532 + #ff633b48 + #ff7d5260 + #ff986977 + #ffb58392 + #ffd29dac + #ffefb8c8 + #ffffd8e4 + #ffffecf1 + #fffffbfa + #ffffffff + @color/m3_ref_palette_neutral6 + @color/m3_ref_palette_error80 + @color/m3_ref_palette_error30 + @color/m3_ref_palette_neutral20 + @color/m3_ref_palette_primary40 + @color/m3_ref_palette_neutral90 + @color/m3_ref_palette_neutral90 + @color/m3_ref_palette_error20 + @color/m3_ref_palette_error90 + @color/m3_ref_palette_primary20 + @color/m3_ref_palette_primary90 + @color/m3_ref_palette_secondary20 + @color/m3_ref_palette_secondary90 + @color/m3_ref_palette_neutral90 + @color/m3_ref_palette_neutral_variant80 + @color/m3_ref_palette_tertiary20 + @color/m3_ref_palette_tertiary90 + @color/m3_ref_palette_neutral_variant60 + @color/m3_ref_palette_neutral_variant30 + @color/m3_ref_palette_primary80 + @color/m3_ref_palette_primary30 + @color/m3_ref_palette_secondary80 + @color/m3_ref_palette_secondary30 + @color/m3_ref_palette_neutral6 + @color/m3_ref_palette_neutral24 + @color/m3_ref_palette_neutral12 + @color/m3_ref_palette_neutral17 + @color/m3_ref_palette_neutral22 + @color/m3_ref_palette_neutral10 + @color/m3_ref_palette_neutral4 + @color/m3_ref_palette_neutral6 + @color/m3_ref_palette_neutral_variant30 + @color/m3_ref_palette_tertiary80 + @color/m3_ref_palette_tertiary30 + @color/m3_ref_palette_neutral98 + @color/m3_ref_palette_error40 + @color/m3_ref_palette_error90 + @color/m3_ref_palette_neutral95 + @color/m3_ref_palette_primary80 + @color/m3_ref_palette_neutral20 + @color/m3_ref_palette_neutral10 + @color/m3_ref_palette_error100 + @color/m3_ref_palette_error10 + @color/m3_ref_palette_primary100 + @color/m3_ref_palette_primary10 + @color/m3_ref_palette_secondary100 + @color/m3_ref_palette_secondary10 + @color/m3_ref_palette_neutral10 + @color/m3_ref_palette_neutral_variant30 + @color/m3_ref_palette_tertiary100 + @color/m3_ref_palette_tertiary10 + @color/m3_ref_palette_neutral_variant50 + @color/m3_ref_palette_neutral_variant80 + @color/m3_ref_palette_primary40 + @color/m3_ref_palette_primary90 + @color/m3_ref_palette_secondary40 + @color/m3_ref_palette_secondary90 + @color/m3_ref_palette_neutral98 + @color/m3_ref_palette_neutral98 + @color/m3_ref_palette_neutral94 + @color/m3_ref_palette_neutral92 + @color/m3_ref_palette_neutral90 + @color/m3_ref_palette_neutral96 + @color/m3_ref_palette_neutral100 + @color/m3_ref_palette_neutral87 + @color/m3_ref_palette_neutral_variant90 + @color/m3_ref_palette_tertiary40 + @color/m3_ref_palette_tertiary90 + @color/m3_ref_palette_primary10 + @color/m3_ref_palette_primary30 + @color/m3_ref_palette_secondary10 + @color/m3_ref_palette_secondary30 + @color/m3_ref_palette_tertiary10 + @color/m3_ref_palette_tertiary30 + @color/m3_ref_palette_primary90 + @color/m3_ref_palette_primary80 + @color/m3_ref_palette_secondary90 + @color/m3_ref_palette_secondary80 + @color/m3_ref_palette_tertiary90 + @color/m3_ref_palette_tertiary80 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff008577 + #fff5f5f5 + #ffe0e0e0 + #fffafafa + #ff757575 + #ff424242 + #ff303030 + #ff212121 + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #FFFFFF + #61000000 + #00ffffff + #52000000 + #6B000000 + #1F000000 + #0A000000 + #00000000 + #DE000000 + #ffffffff + #ff9e9e9e + @android:color/black + @color/material_grey_600 + @color/material_grey_900 + @color/material_grey_100 + #ffffffff + #de000000 + #4Dffffff + #39000000 + #33ffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #e6616161 + #e6FFFFFF + 16dp + 72dp + 56dp + 0dp + 0dp + 4dp + 16dp + 10dp + 6dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 720dp + 320dp + 2dp + 4dp + 4dp + 2dp + 80% + 100% + 320dp + 320dp + 8dp + 8dp + 65% + 95% + 24dp + 18dp + 8dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + 80dp + 64dp + 48dp + @dimen/abc_action_bar_content_inset_material + 296dp + 4dp + 48dip + 320dip + 2dp + 2dp + 20dp + 48dp + 36dp + 16dp + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 14sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 16dp + 1dp + 2dp + 2dp + 64dp + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 10dp + 4dp + 168dp + 96dp + 14sp + 8dp + 56dp + 24dp + 96dp + 56dp + 10dp + 8dp + 1dp + 12sp + 8dp + 16dp + 64dp + 0.5dp + 6dp + 24dp + 40dp + 56dp + 6dp + 6dp + 16dp + 32dp + 24dp + 16dp + 32dp + 4dp + 280dp + 8dp + 8dp + 128dp + 1.0 + 0dp + 6dp + 0dp + -1px + -1px + 12dp + 14dp + 16dp + 14sp + 264dp + 72dp + 14sp + 12sp + 5dp + 0.30 + 0.26 + 8dp + 0dp + 50dp + 0.26 + 0.20 + 0.12 + 0.50 + 0.38 + 0.70 + 0.54 + 20dp + 800dp + 120dp + 14dp + 14dp + 28dp + @dimen/m3_sys_elevation_level3 + 16dp + 24dp + 16dp + 16dp + 16dp + 96dp + 112dp + 112dp + @dimen/m3_comp_top_app_bar_small_container_height + @dimen/m3_comp_top_app_bar_large_container_height + @dimen/m3_comp_top_app_bar_medium_container_height + 48dp + 24dp + 24dp + 8dp + 12dp + 24dp + 48dp + 1.5dp + 6dp + @dimen/m3_comp_badge_size + 1.5dp + 3dp + 12dp + @dimen/m3_comp_badge_large_size + 4dp + 2dp + @dimen/m3_comp_navigation_bar_active_indicator_height + 4dp + @dimen/m3_comp_navigation_bar_active_indicator_width + 16dp + 12dp + @dimen/m3_comp_navigation_bar_container_height + 20dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level1 + 6dp + 4dp + 12dp + 16dp + @dimen/m3_comp_bottom_app_bar_container_height + 4dp + 64dp + 8dp + 0dp + 0dp + @dimen/m3_comp_elevated_button_container_elevation + 0dp + 16dp + 24dp + 10dp + 20dp + 0dp + 20dp + 4dp + 320dp + 6dp + 24dp + 24dp + 6dp + 1dp + 12dp + 16dp + 12dp + 12dp + 0dp + 1dp + 0dp + 6dp + 0dp + 7dp + @dimen/m3_comp_elevated_card_container_elevation + 2dp + @dimen/m3_sys_elevation_level0 + 1dp + 1dp + 2dp + 10dp + 1dp + 28dp + 56dp + 40dp + 1dp + 8dp + -1dp + 7dp + 1dp + 2dp + 18dp + 32dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level0 + 1dp + 18dp + 16dp + 6dp + @dimen/m3_sys_elevation_level2 + 80dp + 0.38 + 1dp + 120dp + 128dp + 1dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level0 + @dimen/m3_sys_elevation_level1 + 24dp + @dimen/m3_sys_elevation_level3 + 56dp + @dimen/m3_sys_elevation_level3 + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_elevation_level4 + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + @dimen/m3_sys_elevation_level3 + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_elevation_level3 + 56dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_elevation_level4 + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + 96dp + 36dp + @dimen/m3_sys_elevation_level3 + @dimen/m3_sys_state_pressed_state_layer_opacity + 40dp + 24dp + @dimen/m3_sys_elevation_level2 + @dimen/m3_sys_elevation_level0 + 18dp + @dimen/m3_sys_elevation_level0 + @dimen/m3_sys_state_dragged_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + @dimen/m3_sys_state_pressed_state_layer_opacity + 0.38 + 32dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level0 + 1dp + 18dp + @dimen/m3_sys_elevation_level0 + 32dp + 1dp + 24dp + 18dp + @dimen/m3_sys_elevation_level2 + 32dp + 64dp + @dimen/m3_sys_elevation_level2 + 80dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + @dimen/m3_sys_state_pressed_state_layer_opacity + 360dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_elevation_level0 + 32dp + 56dp + @dimen/m3_sys_elevation_level0 + 80dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 24dp + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_elevation_level2 + 0.12 + 1dp + @dimen/m3_sys_elevation_level0 + 0.12 + 24dp + 1dp + 1dp + 0.38 + 0.38 + 0.38 + 2dp + 1dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 3dp + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 24dp + 4dp + 4dp + 4dp + 0.38 + 0.38 + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 0.32 + 30dp + @dimen/m3_sys_elevation_level3 + 56dp + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_elevation_level3 + 56dp + 72dp + 2dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 4dp + 32dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level1 + 256dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level0 + 44dp + 6dp + 4dp + 0.38 + 0.38 + 0.12 + 16dp + 4dp + @dimen/m3_sys_elevation_level3 + 32dp + @dimen/m3_sys_elevation_level1 + @dimen/m3_sys_elevation_level0 + 1dp + 18dp + 1 + 0.38 + 0.12 + 0.38 + 0.38 + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 32dp + 52dp + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 2dp + @dimen/m3_sys_elevation_level3 + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + 1dp + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + 152dp + 112dp + @dimen/m3_sys_elevation_level0 + 64dp + @dimen/m3_sys_elevation_level2 + @dimen/m3_sys_elevation_level3 + 8dp + 8dp + 20dp + 12dp + 56dp + 16dp + 8dp + 0dp + 30% + 2dp + 6dp + 36dp + 96dp + 4dp + @dimen/m3_comp_menu_container_elevation + 14dp + 16dp + 4dp + 28dp + 12dp + 0dp + 12dp + 12dp + 0dp + 4dp + 28dp + 28dp + @dimen/m3_comp_navigation_rail_container_width + @dimen/m3_comp_navigation_rail_container_elevation + @dimen/m3_comp_navigation_rail_icon_size + @dimen/m3_comp_navigation_rail_active_indicator_height + 4dp + @dimen/m3_comp_navigation_rail_active_indicator_width + 60dp + 12dp + 20dp + 4dp + 12dp + 2dp + @dimen/m3_sys_state_dragged_state_layer_opacity + @dimen/m3_sys_state_focus_state_layer_opacity + @dimen/m3_sys_state_hover_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_sys_state_pressed_state_layer_opacity + @dimen/m3_comp_search_bar_container_elevation + @dimen/m3_comp_search_bar_container_height + 16dp + 16dp + 1dp + 4dp + 16dp + 16sp + 1dp + @dimen/m3_comp_search_view_container_elevation + @dimen/m3_comp_search_view_full_screen_header_container_height + 16dp + @dimen/m3_comp_sheet_side_docked_modal_container_elevation + @dimen/m3_comp_sheet_side_docked_standard_container_elevation + @dimen/m3_comp_sheet_side_docked_container_width + 0.08 + 0.12 + 2dp + 24dp + 40dp + 1.0 + 8dp + 0dp + 1dp + 3dp + 6dp + 8dp + 12dp + 0.3 + 0.8 + 0 + 0.2 + 0.1 + 0.1 + 0.7 + 1 + 0.4 + 1 + 0 + 1 + 0.4 + 0.2 + 0 + 1 + 0 + 0.2 + 0 + 1 + 0 + 1 + 0 + 1 + 0.3 + 1 + 0 + 1 + 0.2 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0.16 + 0.1 + 0.08 + 0.1 + 2dp + @dimen/m3_comp_time_picker_container_elevation + 20dp + 640dp + 80dp + 24dp + 96dp + 24dp + 44dp + 4dp + 4dp + 2dp + 15sp + 96dp + 12dp + 12dp + 52dp + 256dp + -4dp + 2dp + 1dp + 0.38 + 0.12 + 0.87 + 0.6 + 12dp + 23dp + 8dp + 32dp + 4dp + 8dp + 4dp + 12dp + 8dp + 2dp + 245dp + 488dp + 56dp + 560dp + 340dp + 80dp + 24dp + 24dp + 80dp + 24dp + 4dp + 4dp + 8dp + 6dp + 10sp + 12dp + 12dp + 16dp + 60dp + 16dp + 5dp + 8dp + 0dp + 56dp + 4dp + 64dp + 0dp + 0dp + 2dp + 2dp + 2dp + 12dp + 8dp + 6dp + 0.07 + 320dp + 4dp + 16dp + 16dp + 4dp + 6dp + 8dp + 1dp + 4dp + 8dp + 8dp + 14sp + 0dp + 64dp + 52dp + 8dp + 0dp + 12dp + 15dp + 32dp + 3dp + 1dp + 1dp + 36dp + 24dp + 16dp + 12dp + 4dp + 1dp + 120dp + 128dp + 32dp + 12dp + 8dp + 24dp + 0dp + 480dp + 2dp + 0dp + 4dp + 48dp + 4dp + 8dp + 104dp + 20dp + 24dp + 100dp + 16dp + 28dp + 68dp + 18dp + 52dp + 8dp + 8dp + 88dp + 8dp + 24dp + 4dp + 5dp + 1dp + 8dp + 3dp + 14sp + 8dp + -8dp + 8dp + 12dp + 0dp + 0dp + 6dp + 20dp + 20dp + 24dp + 12dp + 48dp + 120dp + 20dp + 12dp + 12dp + 0dp + 2dp + 6dp + 6dp + 48dp + 2dp + 6dp + 0.00 + 0.24 + 0.08 + 0.24 + 0.00 + 0.12 + 0.04 + 0.12 + 48dp + 24dp + 8dp + 0dp + 22dp + 14dp + 24dp + 8dp + 4dp + 14dp + 56dp + 72dp + 8dp + 14dp + 24dp + 8dp + 16dp + 12dp + 4dp + 2dp + 4dp + 4dp + 18dp + 40dp + 20dp + 40dp + 28dp + 2.5dp + 4dp + 3dp + 2dp + 4dp + 0dp + 4dp + 4dp + 24dp + 4dp + 13dp + 26dp + 1dp + 10dp + 8dp + 1dp + 4dp + 16dp + 48dp + 0.5 + 4dp + 0.8 + 8dp + 8dp + 8dp + 16dp + 4dp + 16dp + 32dp + @dimen/m3_comp_switch_track_height + @dimen/m3_comp_switch_track_width + 4dp + 0dp + 4dp + @dimen/m3_comp_outlined_text_field_outline_width + @dimen/m3_comp_outlined_text_field_focus_outline_width + 16dp + 4dp + 16dp + 4dp + 56dp + 14dp + 4dp + 32dp + 32dp + 12dp + 30dp + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 4dp + 3dp + 24dp + 13sp + 10dp + 5dp + 2dp + 16dp + 8dp + 8dp + 96dp + 6.5dp + 0dp + 16dp + @drawable/material_ic_keyboard_arrow_right_black_24dp + @drawable/material_ic_keyboard_arrow_left_black_24dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220 + 150 + 150 + 150 + 127 + 150 + 2 + 300 + 12451000 + 320 + 999 + 100 + 100 + 75 + 120 + 100 + 700 + 800 + 900 + 1000 + 450 + 500 + 550 + 600 + 250 + 300 + 350 + 400 + 50 + 100 + 150 + 200 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 300 + 350 + 200 + 250 + 75 + 150 + 0 + 4 + 100 + 100 + 1 + 1 + 3 + 75 + 120 + 100 + @integer/m3_sys_motion_duration_medium1 + @integer/m3_sys_motion_duration_short3 + @integer/m3_sys_motion_duration_short2 + @integer/m3_sys_motion_duration_short2 + 16 + 32 + 32 + 52 + 250 + 2 + 1 + 0 + 200 + 999 + + %d new notification + %d new notifications + + Navigate home + Navigate up + More options + Done + See all + Choose an app + OFF + ON + Alt+ + Ctrl+ + delete + enter + Function+ + Meta+ + Shift+ + space + Sym+ + Menu+ + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + هذه الخدمة ضرورية لـ Jordan Bot لكي يقوم بقراءة ØªÙØ§ØµÙŠÙ„ الرحلة من الشاشة والضغط على زر قبول الرحلة تلقائياً عندما تتطابق مع شروطك. + androidx.startup + Jordan Bot + com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior + com.google.android.material.bottomsheet.BottomSheetBehavior + Collapse the bottom sheet + Expand the bottom sheet + Expand halfway + Drag handle double-tapped + Drag handle + Answer + Video + Decline + Hang Up + Incoming call + Ongoing call + Screening an incoming call + Characters entered %1$d of %2$d + Character limit exceeded %1$d of %2$d + %1$d/%2$d + Clear text + Enable + %1$s won\'t work unless you enable Google Play services. + Enable Google Play services + Install + %1$s won\'t run without Google Play services, which are missing from your device. + Get Google Play services + Google Play services availability + Google Play services error + %1$s is having trouble with Google Play services. Please try again. + %1$s won\'t run without Google Play services, which are not supported by your device. + Update + %1$s won\'t run unless you update Google Play services. + Update Google Play services + %1$s won\'t run without Google Play services, which are currently updating. + New version of Google Play services needed. It will update itself shortly. + Open on phone + Sign in + Sign in with Google + + Error: invalid + + Error + Show dropdown menu + com.google.android.material.transformation.FabTransformationScrimBehavior + com.google.android.material.transformation.FabTransformationSheetBehavior + com.google.android.material.behavior.HideBottomViewOnScrollBehavior + Dialog Icon + Tab + %1$s%2$s + sans-serif-medium + sans-serif + sans-serif-medium + sans-serif + path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1) + cubic-bezier(0.3, 0, 0.8, 0.2) + cubic-bezier(0.1, 0.7, 0.1, 1) + M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1 + cubic-bezier(0.4, 0, 0.2, 1) + cubic-bezier(0.4, 0, 1, 1) + cubic-bezier(0, 0, 0.2, 1) + cubic-bezier(0, 0, 1, 1) + cubic-bezier(0.2, 0, 0, 1) + cubic-bezier(0.3, 0, 1, 1) + cubic-bezier(0, 0, 0, 1) + : + Select AM or PM + %1$s hours + Select hour + %1$s o\'clock + Select minutes + %1$s minutes + cubic-bezier(0.4, 0.0, 1.0, 1.0) + cubic-bezier(0.0, 0.0, 0.2, 1.0) + path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1) + cubic-bezier(0.0, 0.0, 1.0, 1.0) + cubic-bezier(0.4, 0.0, 0.2, 1.0) + Range end + Range start + Value + AM + Switch to clock mode for the time input. + Hour + Minute + PM + Select time + Switch to text input mode for the time input. + New notification + M14,18.2 11.4,15.6 10,17 14,21 22,13 20.6,11.6z + icon + M13.4,15 11,15 11,17 13.4,17 21,17 21,15z + icon path + M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z + button + button path + M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z M23,23H9V9h14V23z + + Checked + + + Partially checked + + + Not checked + + Remove %1$s + More than %1$d new notifications + %1$d%2$s + Change to next month + Change to previous month + Start date selection: %1$s – End date selection: %2$s + Current selection: %1$s + none + Cancel + OK + %1$s + Select Date + Selected date + %1$s + End date %1$s + Invalid format. + Example: %1$s + Use: %1$s + Invalid range. + Navigate to current year %1$d + Navigate to year %1$d + Out of range: %1$s + Start date – %1$s + %1$s – End date + %1$s – %2$s + Select Range + Start date – End date + Save + Start date %1$s + Date + End date + Start date + d + m + y + Today %1$s + Switch to calendar input mode + Tap to switch to Calendar view + Switch to text input mode + Tap to switch to year view + circle_group + M4,16 A12,12 0 0,1 16,4 H16 A12,12 0 0,1 16,28 H16 A12,12 0 0,1 4,16 + M0,16 A11,11 0 0,1 11,5 H21 A11,11 0 0,1 21,27 H11 A11,11 0 0,1 0,16 + circle + M2,16 A14,14 0 0,1 16,2 H16 A14,14 0 0,1 16,30 H16 A14,14 0 0,1 2,16 + M8,16 A8,8 0 0,1 16,8 H16 A8,8 0 0,1 16,24 H16 A8,8 0 0,1 8,16 + M1,16 A15,15 0 0,1 16,1 H36 A15,15 0 0,1 36,31 H16 A15,15 0 0,1 1,16 + M0,16 A16,16 0 0,1 16,0 H36 A16,16 0 0,1 36,32 H16 A16,16 0 0,1 0,16 + Cancel + OK + Show password + M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z + M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M3.27,4.27 L19.74,20.74 + Search + + com.google.android.material.search.SearchBar$ScrollingViewBehavior + + Clear text + Back + Side Sheet + com.google.android.material.sidesheet.SideSheetBehavior + 999+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceLabelLarge + ?attr/colorError + ?attr/colorOnError + ?attr/textAppearanceLabelSmall + ?attr/colorSurfaceContainer + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorSurface + ?attr/colorError + ?attr/colorOnError + ?attr/colorOnPrimary + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHigh + ?attr/shapeAppearanceCornerExtraLarge + ?attr/textAppearanceBodyLarge + ?attr/colorPrimary + ?attr/colorOnPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceHeadlineLarge + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceLabelLarge + ?attr/colorSecondaryContainer + ?attr/textAppearanceTitleLarge + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceTitleSmall + ?attr/colorOnSurface + ?attr/textAppearanceBodyLarge + ?attr/colorPrimary + ?attr/colorOnPrimary + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHigh + ?attr/shapeAppearanceCornerExtraLarge + ?attr/colorOnSurface + ?attr/textAppearanceHeadlineSmall + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceBodyMedium + ?attr/colorOutlineVariant + ?attr/colorSurfaceContainerLow + ?attr/colorSurfaceContainerLow + ?attr/shapeAppearanceCornerMedium + ?attr/colorPrimaryContainer + ?attr/shapeAppearanceCornerLarge + ?attr/colorOnPrimaryContainer + ?attr/textAppearanceLabelLarge + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorSurfaceContainerHigh + ?attr/colorPrimary + ?attr/colorTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorPrimaryContainer + ?attr/shapeAppearanceCornerLarge + ?attr/colorOnPrimaryContainer + ?attr/shapeAppearanceCornerExtraLarge + ?attr/shapeAppearanceCornerMedium + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorSurfaceContainerHigh + ?attr/colorPrimary + ?attr/colorTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorSurfaceContainer + ?attr/textAppearanceBodyLarge + ?attr/colorPrimary + ?attr/colorOnPrimary + ?attr/textAppearanceLabelLarge + ?attr/colorSurfaceContainerHighest + ?attr/shapeAppearanceCornerMedium + ?attr/colorPrimary + ?attr/colorOnPrimary + ?attr/colorPrimary + ?attr/colorSurfaceContainerHighest + ?attr/shapeAppearanceCornerExtraSmall + ?attr/colorError + ?attr/colorError + ?attr/colorError + ?attr/textAppearanceBodyLarge + ?attr/textAppearanceBodySmall + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSurfaceVariant + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceLabelLarge + ?attr/colorPrimary + ?attr/colorOnSurfaceVariant + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceLabelLarge + ?attr/colorSurfaceContainer + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSecondaryContainer + ?attr/colorSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorSurfaceContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/textAppearanceLabelMedium + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSecondaryContainer + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceTitleSmall + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSecondaryContainer + ?attr/textAppearanceLabelLarge + ?attr/colorSurfaceContainerLow + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSecondaryContainer + ?attr/colorSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/textAppearanceLabelMedium + ?attr/colorSurfaceContainer + ?attr/colorPrimary + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorOutline + ?attr/colorOutline + ?attr/colorOutline + ?attr/colorSurface + ?attr/shapeAppearanceCornerMedium + ?attr/colorOutline + ?attr/colorOutlineVariant + ?attr/colorOnSurface + ?attr/colorOutlineVariant + ?attr/colorOutlineVariant + ?attr/colorOutlineVariant + ?attr/colorPrimary + ?attr/shapeAppearanceCornerExtraSmall + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorError + ?attr/colorError + ?attr/colorError + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurfaceVariant + ?attr/colorOutline + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceBodySmall + ?attr/textAppearanceBodySmall + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnSurfaceVariant + ?attr/colorPrimary + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceTitleSmall + ?attr/colorPrimary + ?attr/colorSecondaryContainer + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorSurfaceContainerHigh + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurface + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHigh + ?attr/colorOutline + ?attr/shapeAppearanceCornerExtraLarge + ?attr/colorOnSurface + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceBodyLarge + ?attr/colorOnSurfaceVariant + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceTitleSmall + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerLow + ?attr/shapeAppearanceCornerExtraLarge + ?attr/colorOnSurfaceVariant + ?attr/shapeAppearanceCornerLarge + ?attr/colorSurfaceContainerLow + ?attr/shapeAppearanceCornerLarge + ?attr/colorSurface + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorPrimary + ?attr/colorSecondaryContainer + ?attr/colorSurfaceInverse + ?attr/colorOnSurfaceInverse + ?attr/colorSurfaceInverse + ?attr/shapeAppearanceCornerExtraSmall + ?attr/colorOnSurfaceInverse + ?attr/textAppearanceBodyMedium + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceLabelLarge + ?attr/colorSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorSurfaceContainerHighest + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurface + ?attr/colorPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnPrimary + ?attr/colorPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnPrimaryContainer + ?attr/colorPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurface + ?attr/colorSurfaceContainerHighest + ?attr/colorOutline + ?attr/colorOutline + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurface + ?attr/colorSurfaceContainerHighest + ?attr/colorOutline + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurfaceVariant + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurface + ?attr/colorSurfaceContainerHighest + ?attr/colorOutline + ?attr/colorSurfaceContainerHighest + ?attr/colorOutline + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/colorPrimary + ?attr/textAppearanceLabelLarge + ?attr/colorPrimary + ?attr/shapeAppearanceCornerSmall + ?attr/colorPrimary + ?attr/colorOnSurface + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceBodySmall + ?attr/colorSurfaceContainerHighest + ?attr/colorPrimary + ?attr/colorSurfaceContainerHigh + ?attr/shapeAppearanceCornerExtraLarge + ?attr/colorOnSurfaceVariant + ?attr/textAppearanceLabelMedium + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceTitleMedium + ?attr/colorOutline + ?attr/colorTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorOnTertiaryContainer + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/colorOnSurfaceVariant + ?attr/shapeAppearanceCornerSmall + ?attr/textAppearanceDisplayLarge + ?attr/colorPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorOnPrimaryContainer + ?attr/colorOnSurface + ?attr/textAppearanceDisplayLarge + ?attr/colorSurfaceContainerHighest + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/colorOnSurface + ?attr/textAppearanceHeadlineMedium + ?attr/colorOnSurface + ?attr/textAppearanceHeadlineSmall + ?attr/colorSurface + ?attr/colorOnSurface + ?attr/textAppearanceTitleLarge + ?attr/colorOnSurface + ?attr/colorSurfaceContainer + ?attr/colorOnSurfaceVariant + ?attr/colorPrimary + ?attr/colorPrimary + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml index 4945199..539f132 100644 --- a/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml @@ -11543,18 +11543,32 @@ %d izaziso ezintsha %d izaziso ezintsha - Goqa ishidi eliphansiNweba ishidi eliphansiNweba phakathiHudula isibambi esithephwe kabiliHudula isibambiIzinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$dUmkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$dSula umbhaloIphutha: okungavumelekileIphuthaBonisa imenyu yokudonsela phansiIsithonjana sebhokisiIthebhuKhetha u-AM noma u-PMamahora angu-%1$sKhetha ihora%1$s ezimpondweniKhetha amaminithiamaminithi angu-%1$sAMShintshela kumodi yewashi ngokufakwa kwesikhathi.IhoraIminithiPMKhetha isikhathiShintshela kumodi yokufaka umbhalo ngokufaka isikhathi.Isaziso esishaKumakiweKumakwe kancaneAkumakiweSusa i-%1$sIzaziso ezintsha ezingaphezu kokungu-%1$dShintshela kunyanga elandelayoShintshela kunyanga edluleUkukhethwa kosuku lokuqala: %1$s – Ukukhethwa kosuku lokuphela: %2$sUkukhetha kwamanje: %1$sluthoKhanselaKULUNGILE%1$sKhetha IdethiKhetha idethi%1$sIlanga lokuphela %1$sIfomethi engavumelekile.Isibonelo: %1$sSebenzisa: %1$sIbanga elingavumelekile.Funa onyakeni wamanje %1$dZulela onyakeni %1$dIkude kubanga: %1$sIdethi yokuqala – %1$s%1$s – Idethi yokuphela%1$s – %2$sKhetha IbangaIdethi yokuqala – Idethi yokuphelaLondolozaIlanga lokuqala %1$sIdethiIdethi yokuphelaIdethi yokuqaladmyNamuhla %1$sShintshela kwimodi yokufaka yekhalendaThepha ukuze ushintshele ekubukeni KwekhalendaShintshela kwimodi yokufaka yombhaloThepha ukuze ushintshele ekubukeni konyakaKhanselaKULUNGILEBonisa iphasiwediSula umbhaloEmuvaIshidi EliseceleniJordan Botهذه الخدمة ضرورية لـ Jordan Bot لكي يقوم بقراءة ØªÙØ§ØµÙŠÙ„ الرحلة من الشاشة والضغط على زر قبول الرحلة تلقائياً عندما تتطابق مع شروطك. + #00D4AA + #00B894 + #00D4AA + #1A1A2E + #FFFFFF + #0F0F1A + #FFFFFF + Jordan Botهذه الخدمة ضرورية لـ Jordan Bot لكي يقوم بقراءة ØªÙØ§ØµÙŠÙ„ الرحلة من الشاشة والضغط على زر قبول الرحلة تلقائياً عندما تتطابق مع شروطك. diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml index 5d42c5d..62c6cf7 100644 --- a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml @@ -179,7 +179,7 @@ @@ -188,7 +188,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="4dp" - android:text="مطلوب لتتبع مسارك وتحديث خريطة الأردن ÙˆØ­ÙØ¸ إحصائياتك" + android:text="مطلوب لمطابقة الطلبات القريبة من موقعك وتسريع القبول التلقائي" android:textColor="#999999" android:textSize="12sp" /> @@ -198,11 +198,30 @@ android:layout_height="44dp" android:layout_marginTop="8dp" android:background="@drawable/bg_button" - android:text="ØªÙØ¹ÙŠÙ„ تتبع الموقع" + android:text="ØªÙØ¹ÙŠÙ„ مطابقة الطلبات القريبة" android:textColor="#FFFFFF" android:textSize="14sp" /> + +